getAuthorFeed method
Get a view of an actor's 'author feed' (post and reposts by the author). Does not require auth.
Implementation
Future<XRPCResponse<FeedGetAuthorFeedOutput>> getAuthorFeed({
required String actor,
int? limit,
String? cursor,
FeedGetAuthorFeedFilter? filter,
bool? includePins,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await appBskyFeedGetAuthorFeed(
actor: actor,
limit: limit,
cursor: cursor,
filter: filter,
includePins: includePins,
$ctx: _ctx,
$headers: $headers,
$unknown: $unknown,
);