Hashtag Interaction Users 
- Endpoint Path: /api/v2/hashtag/{hid}/interaction/{type}
- Method: GET
- Request: Rest+Query
Headers Optional Parameter 
| Parameter Name | 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 | 
Rest Params 
| Parameter Name | Type | Required | Description | 
|---|---|---|---|
| hid | String | required | Hashtag slug | 
| type | String | required | View type likers,dislikers,followers,blockers | 
Query Params 
| Parameter Name | Type | Required | Description | 
|---|---|---|---|
| orderDirection | String | optional | Sort by direction asc,desc, Default:desc | 
| whitelistKeys | String | optional | Whitelist key names, only returns key-value pairs for the given key names Multiple separated by English commas, supports "dot notation" for multi-dimensional arrays | 
| blacklistKeys | String | optional | Blacklist key names, removes specified key-value pairs from the returned data 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
- type=likersGet the list of users who liked- hid.
- type=dislikersGet the list of users who disliked- hid.
- type=followersGet the list of users who followed- hid.
- type=blockersGet the list of users who blocked- hid.
- The interface will decide whether to output data based on the configuration table settings Operations > Interaction > View interaction log settings.- hashtag_likersconfiguration, whether to output users who liked it
- hashtag_dislikersconfiguration, whether to output users who disliked it
- hashtag_followersconfiguration, whether to output users who followed it
- hashtag_blockersconfiguration, whether to output users who blocked it
 
- orderDirectionThe sort direction is sorted by creation time.
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
            }
        ]
    }
}