Youtube API - 按主题搜索Id在第19页停止

时间:2017-08-23 13:27:00

标签: node.js youtube youtube-api youtube-data-api

对于有关topicId /m/019_rr的视频的19个搜索请求后,API是否有任何理由发送undefined nextPageToken?

the log of nextPageTokens and the result for the last request

从屏幕截图中可以看出,最后一个请求的nextPageToken是undefined,并且还记录了该请求的结果,表明它有一个空的项目列表。

第一个请求的pageInfo属性说:

"pageInfo": {
    "totalResults": 1000000,
    "resultsPerPage": 50
},

所以这意味着肯定必须提出超过20个请求。

我使用的请求选项是:

{
    part: 'snippet',
    maxResults: 50,
    topicId: '/m/019_rr',
    pageToken: nextPageToken || '',
    regionCode: 'US',
    key: config.googleApiKey
}

我也确定这不是配额问题。

非常感谢任何帮助。

0 个答案:

没有答案