appBskyFeedDescribeFeedGenerator function

Future<XRPCResponse<FeedDescribeFeedGeneratorOutput>> appBskyFeedDescribeFeedGenerator({
  1. required ServiceContext $ctx,
  2. Map<String, String>? $headers,
  3. Map<String, String>? $unknown,
})

Get information about a feed generator, including policies and offered feed URIs. Does not require auth; implemented by Feed Generator services (not App View).

Implementation

Future<XRPCResponse<FeedDescribeFeedGeneratorOutput>>
appBskyFeedDescribeFeedGenerator({
  required ServiceContext $ctx,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await $ctx.get(
  ns.appBskyFeedDescribeFeedGenerator,
  headers: $headers,
  parameters: {...?$unknown},
  to: const FeedDescribeFeedGeneratorOutputConverter().fromJson,
);