getAuthorFeed method

Future<XRPCResponse<FeedGetAuthorFeedOutput>> getAuthorFeed({
  1. required String actor,
  2. int? limit,
  3. String? cursor,
  4. FeedGetAuthorFeedFilter? filter,
  5. bool? includePins,
  6. Map<String, String>? $headers,
  7. Map<String, String>? $unknown,
})

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,
);