点赞列表
开发中
GET
/douyin/favorite/list/
最后修改时间:2022-07-02 17:07:08
请求参数
Query 参数
token
string
必需
user_id
string
必需
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET '/douyin/favorite/list/?token&user_id'
返回响应
🟢200成功
application/json
Body
status_code
integer
必需
status_msg
string
必需
video_list
array [object {8}]
可选
id
integer
可选
author
object
可选
play_url
string
可选
cover_url
string
可选
favorite_count
integer
可选
comment_count
integer
可选
is_favorite
boolean
可选
title
string
可选
示例
{
"status_code": 0,
"status_msg": "favorite list success",
"video_list": [
{
"id": 1,
"author": {
"id": 1,
"name": "Jerry",
"follow_count": 0,
"follower_count": 0,
"is_follow": false
},
"play_url": "https://www.w3schools.com/html/movie.mp4",
"cover_url": "https://cdn.pixabay.com/photo/2016/03/27/18/10/bear-1283347_1280.jpg",
"favorite_count": 3,
"comment_count": 2,
"is_favorite": true,
"title": "bear"
}
]
}