Hashtag Interaction Users
- Endpoint Path:
/api/fresns/v1/hashtag/{htid}/interaction/{type}
- Method:
GET
- Request:
Rest
+Query
Headers Optional Parameter
Key | Public Mode (Required) | Private Mode (Required) |
---|---|---|
X-Fresns-Aid | optional | required |
X-Fresns-Aid-Token | optional | required |
X-Fresns-Uid | optional | required |
X-Fresns-Uid-Token | optional | required |
Path Variables
Key | Type | Required | Description |
---|---|---|---|
htid | String | required | Hashtag ID |
type | String | required | View type likers ,dislikers ,followers ,blockers |
Query Params
Key | Type | Required | Description |
---|---|---|---|
orderDirection | String | optional | Sort by direction asc ,desc , Default: desc |
filterType | String | optional | whitelist only returns key-value pairs for the given key namesblacklist removes specified key-value pairs from the returned data |
filterKeys | String | optional | Multiple separated by English commas, supports "dot notation" for multi-dimensional arrays |
pageSize | Number | optional | Number of items per page (default 15 items) |
page | Number | optional | Page number (default 1) |
Request Description
- List Type
type=likers
Get the list of users who likedhtid
.type=dislikers
Get the list of users who dislikedhtid
.type=followers
Get the list of users who followedhtid
.type=blockers
Get the list of users who blockedhtid
.
- Sort by direction
orderDirection
The sort direction is sorted by creation time.
- Judgement of whether to output records
detail.interaction.likePublicRecord
detail.interaction.dislikePublicRecord
detail.interaction.followPublicRecord
detail.interaction.blockPublicRecord
Return
json
{
"code": 0,
"message": "ok",
"data": {
"pagination": {
"total": "Number / How much data in total",
"pageSize": "Number / How much data on each page",
"currentPage": "Number / Current page number",
"lastPage": "Number / Last page number"
},
"list": [
{
// Common Data Structure -> User Info
}
]
}
}