- 接口注意事项
- 开放平台:接口调用凭证
- 开放平台:客户信息
- 开放平台:企业会员
- 开放平台:商品
- 开放平台:商品分组
- 开放平台:管理企业标签
- 开放平台:编辑客户企业标签
- 开放平台:事件通知
- 开放平台:获客活动
- 开放平台:成员信息
- 开放平台:推客
获取短视频分页
POST
https://w.xiaoliebian.com/api/xiaoliebian-shipinhao/open/api/talent/feed/page
请求参数
Header 参数
Authorization
string
认证令牌
示例值:
Bearer xxx
Body 参数application/json
参数
nextKey
string
分页游标
pageSize
integer
必需
>= 1<= 10
talentAppid
string
达人appid
示例
{
"nextKey": "string",
"pageSize": 1,
"talentAppid": "string"
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://w.xiaoliebian.com/api/xiaoliebian-shipinhao/open/api/talent/feed/page' \
--header 'Authorization: Bearer xxx' \
--header 'Content-Type: application/json' \
--data-raw '{
"nextKey": "string",
"pageSize": 1,
"talentAppid": "string"
}'
返回响应
🟢200成功
application/json
Body
分页
hasMore
boolean
是否有更多
nextKey
string
下一页的游标
feedList
array[object (Feed) {4}]
短视频列表
talentAppid
string
达人appid
exportId
string
短视频id
predictCommissionAmount
integer <int64>
预计佣金金额(分)
productInfo
object
商品信息
示例
{
"hasMore": false,
"nextKey": "",
"feedList": [
{
"talentAppid": "",
"exportId": "",
"predictCommissionAmount": 0
}
]
}
修改于 2025-04-27 08:18:51