查询订阅者列表。
Request
HTTP request
GET https://www.featapi.com/api/subscription/user-subscription/follower/
Parameters
Key | Type | Required? | Description | Notes |
entity_type | enum | No | 过滤结果 | Subscription.EntityType |
subscription_type | enum | No | 过滤结果 | Subscription.Type |
支持Pagination相关参数。
Response
200 Pagination Response
返回订阅者列表Subscription.UserSubscription
{
"pagination": {
"page_size": 50,
"total_count": 1,
"total_pages": 1,
"current_page": 1,
"next": null,
"previous": null
},
"data": [
{
"id": 47,
"user": 7815769374283,
"followed_user": 3120595892220,
"followed_category": null,
"subscription_type": "follow_user",
"created_at": "2022-01-10T08:52:58.425956Z",
"updated_at": "2022-01-10T08:52:58.425387Z",
"entity_type": 100
}
]
}