我想按照本指南在特定日期之后获取视频:https ://developers.tiktok.com/doc/login-kit-video-list
注意:光标值是以毫秒为单位的 UTC Unix 时间戳。您可以传入自定义时间戳以获取在提供的时间戳之后发布的用户视频。
每当我发送cursor
查询参数时,我都没有得到任何结果。如果我不发送cursor
参数,这是我返回的单个视频:
{
"data": {
"cursor": 1625660659000,
"err_code": 0,
"error_code": 0,
"has_more": false,
"video_list": [
{
"cover_image_url": "...",
"create_time": 1625660659,
"duration": 4,
"height": 1024,
"id": "...",
"share_url": "...",
"video_description": "...",
"width": 576
}
]
},
"extra": {
"error_detail": "",
"logid": "202107071248150102340870301E6C5EA0"
}
}
鉴于视频的时间戳,我是否应该能够发送&cursor=1625660658000
(在创建视频前一秒)以接收响应中的视频?