Followers and following documentation updated.
@ -218,6 +218,42 @@ Follow a user.
|
||||
### `/unfollow <username>`
|
||||
Unfollow a user.
|
||||
|
||||
### `/followers [username] [+count]`
|
||||
Show followers for yourself or specified user.
|
||||
|
||||
**Usage:**
|
||||
```bash
|
||||
/followers # Show your followers
|
||||
/followers @user@instance.com # Show user's followers
|
||||
/followers +50 # Show up to 50 of your followers
|
||||
/followers @user +20 # Show up to 20 of user's followers
|
||||
```
|
||||
|
||||
**Aliases:** `/fos` (short for "followers")
|
||||
|
||||
**Notes:**
|
||||
- Default shows up to 20 followers
|
||||
- Maximum 80 followers per request (Mastodon API limit)
|
||||
- Shows account display name, username, and follower/following counts
|
||||
|
||||
### `/following [username] [+count]`
|
||||
Show who you or specified user follows.
|
||||
|
||||
**Usage:**
|
||||
```bash
|
||||
/following # Show who you follow
|
||||
/following @user@instance.com # Show who user follows
|
||||
/following +50 # Show up to 50 accounts you follow
|
||||
/following @user +20 # Show up to 20 accounts user follows
|
||||
```
|
||||
|
||||
**Aliases:** `/friends`, `/frs` (short for "friends")
|
||||
|
||||
**Notes:**
|
||||
- Default shows up to 20 following accounts
|
||||
- Maximum 80 accounts per request (Mastodon API limit)
|
||||
- Shows account display name, username, and follower/following counts
|
||||
|
||||
### `/block <username>`
|
||||
Block a user.
|
||||
|
||||
|
@ -58,6 +58,10 @@ Hello world! # Create a public post
|
||||
```bash
|
||||
/follow @user # Follow a user
|
||||
/unfollow @user # Unfollow a user
|
||||
/followers # Show your followers
|
||||
/following # Show who you follow
|
||||
/followers @user # Show user's followers
|
||||
/following @user +50 # Show up to 50 accounts user follows
|
||||
/block @user # Block a user
|
||||
/mute @user # Mute a user
|
||||
```
|
||||
|
Reference in New Issue
Block a user