返回指定对象的点赞列表。
Request
HTTP request
GET https://www.featapi.com/api/activity/like/
Parameters
- Query parameters
Parameter name | Value | Description |
---|---|---|
Required parameters | ||
target_type | enum | Like.TargetType, 点赞的对象类型 |
object_id | string | 点赞的对象id |
Optional parameters | ||
page | string | page number |
page_size | string | page size |
ordering | string | 目前支持create_time或-create_time |
授权
此请求需要具有以下所有范围的授权:
Scopes |
---|
activity_like |
有关更多信息,请参阅认证和授权页面。
Request body
无
Response
如果成功,则此方法在响应正文中返回Activity.like资源。
201 成功返回列表
{
"data": [
{
"object_id": 2583706,
"id": 123,
"create_time": "2020-03-18T08:10:04.493185Z",
"last_modified": "2020-03-18T08:10:04.493165Z",
"deleted_at": null,
"target_type": 100
}],
"pagination": {
"page_size": 50,
"total_count": 1,
"total_pages": 1,
"current_page": 1,
"next": null,
"previous": null
}
}
404 Not found
示例返回数据可参考 API Common – Resource Not Found