📄️ Creating a post
Bluesky posts are repository records with the Lexicon type app.bsky.feed.post.
📄️ Viewing feeds
Feeds are lists of posts, paginated by cursors. Bluesky has a few types of feeds:
📄️ Viewing threads
A thread refers to a post, its replies (descendants), and its parents
📄️ Liking and reposting
Liking and reposting posts are a core feature of Bluesky. The official atproto SDK has dedicated methods for these actions.
📄️ Viewing profiles
A profile is typically made up of a user's biographical information, and their
📄️ Editing profiles
An authenticated user can edit their profile, including updating their display
📄️ Following and unfollowing
Following
📄️ Muting users
Muting a user hides their posts from your feeds. Mutes are private, and stored
📄️ Blocking users
Blocking a user prevents interaction and hides the user from the client experience. Blocked accounts will not be able to like, reply, mention, or follow you. Their posts, replies, and profile in search will also be hidden from you. Blocks are public.
📄️ User lists
User lists are collections of users.
📄️ Custom feeds
Custom feeds are algorithmic feed generators. To users, this is their timeline. This tutorial will explain how to interact with a feed generator in the network.
📄️ Thread gates
Thread gates set who can reply to a post.