FeedService class base

app.bsky.feed.*

Constructors

FeedService.new(ServiceContext _ctx)

Properties

generator FeedGeneratorRecordAccessor
Record declaring of the existence of a feed generator, and containing metadata about it. The record can exist in any repository.
no setter
hashCode int
The hash code for this object.
no setterinherited
like FeedLikeRecordAccessor
Record declaring a 'like' of a piece of subject content.
no setter
post FeedPostRecordAccessor
Record containing a Bluesky post.
no setter
postgate FeedPostgateRecordAccessor
Record defining interaction rules for a post. The record key (rkey) of the postgate record must match the record key of the post, and that record must be in the same repository.
no setter
repost FeedRepostRecordAccessor
Record representing a 'repost' of an existing Bluesky post.
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
threadgate FeedThreadgateRecordAccessor
Record defining interaction gating rules for a thread (aka, reply controls). The record key (rkey) of the threadgate record must match the record key of the thread's root post, and that record must be in the same repository.
no setter

Methods

describeFeedGenerator({Map<String, String>? $headers, Map<String, String>? $unknown}) Future<XRPCResponse<FeedDescribeFeedGeneratorOutput>>
Get information about a feed generator, including policies and offered feed URIs. Does not require auth; implemented by Feed Generator services (not App View).
getActorFeeds({required String actor, int? limit, String? cursor, Map<String, String>? $headers, Map<String, String>? $unknown}) Future<XRPCResponse<FeedGetActorFeedsOutput>>
Get a list of feeds (feed generator records) created by the actor (in the actor's repo).
getActorLikes({required String actor, int? limit, String? cursor, Map<String, String>? $headers, Map<String, String>? $unknown}) Future<XRPCResponse<FeedGetActorLikesOutput>>
Get a list of posts liked by an actor. Requires auth, actor must be the requesting account.
getAuthorFeed({required String actor, int? limit, String? cursor, FeedGetAuthorFeedFilter? filter, bool? includePins, Map<String, String>? $headers, Map<String, String>? $unknown}) Future<XRPCResponse<FeedGetAuthorFeedOutput>>
Get a view of an actor's 'author feed' (post and reposts by the author). Does not require auth.
getFeed({required AtUri feed, int? limit, String? cursor, Map<String, String>? $headers, Map<String, String>? $unknown}) Future<XRPCResponse<FeedGetFeedOutput>>
Get a hydrated feed from an actor's selected feed generator. Implemented by App View.
getFeedGenerator({required AtUri feed, Map<String, String>? $headers, Map<String, String>? $unknown}) Future<XRPCResponse<FeedGetFeedGeneratorOutput>>
Get information about a feed generator. Implemented by AppView.
getFeedGenerators({required List<AtUri> feeds, Map<String, String>? $headers, Map<String, String>? $unknown}) Future<XRPCResponse<FeedGetFeedGeneratorsOutput>>
Get information about a list of feed generators.
getFeedSkeleton({required AtUri feed, int? limit, String? cursor, Map<String, String>? $headers, Map<String, String>? $unknown}) Future<XRPCResponse<FeedGetFeedSkeletonOutput>>
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.
getLikes({required AtUri uri, String? cid, int? limit, String? cursor, Map<String, String>? $headers, Map<String, String>? $unknown}) Future<XRPCResponse<FeedGetLikesOutput>>
Get like records which reference a subject (by AT-URI and CID).
getListFeed({required AtUri list, int? limit, String? cursor, Map<String, String>? $headers, Map<String, String>? $unknown}) Future<XRPCResponse<FeedGetListFeedOutput>>
Get a feed of recent posts from a list (posts and reposts from any actors on the list). Does not require auth.
getPosts({required List<AtUri> uris, Map<String, String>? $headers, Map<String, String>? $unknown}) Future<XRPCResponse<FeedGetPostsOutput>>
Gets post views for a specified list of posts (by AT-URI). This is sometimes referred to as 'hydrating' a 'feed skeleton'.
getPostThread({required AtUri uri, int? depth, int? parentHeight, Map<String, String>? $headers, Map<String, String>? $unknown}) Future<XRPCResponse<FeedGetPostThreadOutput>>
Get posts in a thread. Does not require auth, but additional metadata and filtering will be applied for authed requests.
getQuotes({required AtUri uri, String? cid, int? limit, String? cursor, Map<String, String>? $headers, Map<String, String>? $unknown}) Future<XRPCResponse<FeedGetQuotesOutput>>
Get a list of quotes for a given post.
getRepostedBy({required AtUri uri, String? cid, int? limit, String? cursor, Map<String, String>? $headers, Map<String, String>? $unknown}) Future<XRPCResponse<FeedGetRepostedByOutput>>
Get a list of reposts for a given post.
getSuggestedFeeds({int? limit, String? cursor, Map<String, String>? $headers, Map<String, String>? $unknown}) Future<XRPCResponse<FeedGetSuggestedFeedsOutput>>
Get a list of suggested feeds (feed generators) for the requesting account.
getTimeline({String? algorithm, int? limit, String? cursor, Map<String, String>? $headers, Map<String, String>? $unknown}) Future<XRPCResponse<FeedGetTimelineOutput>>
Get a view of the requesting account's home timeline. This is expected to be some form of reverse-chronological feed.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
searchPosts({required String q, FeedSearchPostsSort? sort, String? since, String? until, String? mentions, String? author, String? lang, String? domain, String? url, List<String>? tag, int? limit, String? cursor, Map<String, String>? $headers, Map<String, String>? $unknown}) Future<XRPCResponse<FeedSearchPostsOutput>>
Find posts matching search criteria, returning views of those posts. Note that this API endpoint may require authentication (eg, not public) for some service providers and implementations.
sendInteractions({required List<Interaction> interactions, Map<String, String>? $headers, Map<String, String>? $unknown}) Future<XRPCResponse<EmptyData>>
Send information about interactions with feed items back to the feed generator that served them.
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited