appBskyFeedGetFeedSkeleton function
Get a skeleton of a feed provided by a feed generator. Auth is optional, depending on provider requirements, and provides the DID of the requester. Implemented by Feed Generator Service.
Implementation
Future<XRPCResponse<FeedGetFeedSkeletonOutput>> appBskyFeedGetFeedSkeleton({
required AtUri feed,
int? limit,
String? cursor,
required ServiceContext $ctx,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await $ctx.get(
ns.appBskyFeedGetFeedSkeleton,
headers: $headers,
parameters: {
...?$unknown,
'feed': feed.toString(),
if (limit != null) 'limit': limit,
if (cursor != null) 'cursor': cursor,
},
to: const FeedGetFeedSkeletonOutputConverter().fromJson,
);