appBskyFeedGetAuthorFeed function
Get a view of an actor's 'author feed' (post and reposts by the author). Does not require auth.
Implementation
Future<XRPCResponse<FeedGetAuthorFeedOutput>> appBskyFeedGetAuthorFeed({
required String actor,
int? limit,
String? cursor,
FeedGetAuthorFeedFilter? filter,
bool? includePins,
required ServiceContext $ctx,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await $ctx.get(
ns.appBskyFeedGetAuthorFeed,
headers: $headers,
parameters: {
...?$unknown,
'actor': actor,
if (limit != null) 'limit': limit,
if (cursor != null) 'cursor': cursor,
if (filter != null) 'filter': filter.toJson(),
if (includePins != null) 'includePins': includePins,
},
to: const FeedGetAuthorFeedOutputConverter().fromJson,
);