查询用户喜欢列表
开发中GET
http://localhost:8080/qiniu/favorite/list请求参数
Query 参数
user_id
string
可选
示例值:
41
token
string
可选
示例值:
eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE2OTg2NzI4MzMsInBhc3N3b3JkIjoiJHBia2RmMi1zaGE1MTIkQm1uR0V1WlJRYWk5QjRzOSRiM2FhODlkMGYzM2E2MmRlZTkzZWQyMzU2NDRkM2NlYTQxODYwMTI1MzdhOTM2ODBlNWI4MDFmYmJkNjNlYWQyIiwidXNlcm5hbWUiOiJmdWNrIn0.4E4yXH16hcb5WJgcux_rztyuFq_N6z5plTnjWqQsvvM
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
status_code
integer
必需
status_msg
string
必需
video_list
array [object {8}]
必需
video_id
integer
必需
author
object
必需
play_url
string
必需
cover_url
string
必需
title
string
必需
favorite_count
integer
必需
comment_count
integer
必需
is_favorite
boolean
必需
示例
{
"status_code": 0,
"status_msg": "string",
"video_list": [
{
"video_id": 0,
"author": {
"user_id": 0,
"user_name": "string",
"follow_count": 0,
"follower_count": 0,
"is_follow": true,
"avatar": "string",
"background_image": "string",
"signature": "string",
"total_favorited": 0,
"work_count": 0,
"favorite_count": 0
},
"play_url": "string",
"cover_url": "string",
"title": "string",
"favorite_count": 0,
"comment_count": 0,
"is_favorite": true
}
]
}
最后修改时间: 1 年前