发布列表
GET
/douyin/publish/list/
请求参数
Query 参数
token
string
必需
user_id
integer
必需
示例代码
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/publish/list/?token=&user_id='
返回响应
🟢200成功
application/json
Body
status_code
integer
必需
status_msg
string | null
必需
video_list
array [object {8}] | null
必需
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": "string",
"video_list": [
{
"id": 0,
"author": {
"id": 0,
"name": "string",
"follow_count": 0,
"follower_count": 0,
"is_follow": true,
"avatar": "string",
"background_image": "string",
"signature": "string",
"total_favorited": "string",
"work_count": 0,
"favorite_count": 0
},
"play_url": "string",
"cover_url": "string",
"favorite_count": 0,
"comment_count": 0,
"is_favorite": true,
"title": "string"
}
]
}