我正在检查YOUTUBE API V3中的错误

时间:2017-01-18 10:44:49

标签: youtube-api

我希望收到YouTube频道的播放列表和播放列表的数量,但我没有收到正常价值。

Youtube频道ID = UCfgCVM6Thui54cwUqdH1XNA

这有16个播放列表。

但是Youtube-v3-api回到了8个播放列表。

我想知道是否存在API错误或查询问题。

1 个答案:

答案 0 :(得分:0)

使用Youtube的Playlists.list。我尝试使用您的频道ID,这是它返回的播放列表的数量:

(these were the parameters in the Try-it)
    part -> snippet
    channelId -> UCfgCVM6Thui54cwUqdH1XNA
    maxResults -> 50

响应:

{
 "kind": "youtube#playlistListResponse",
 "etag": "\"GM4ZnRh2gk1X1BLWgHklTm-3cgQ/brsESCW4H5vAYLrCxJV_YEwdEIE\"",
 "pageInfo": {
  "totalResults": 16, //confirmed, you have 16 playlists
  "resultsPerPage": 50
 },
  "items": [
  .
  .

我还检查了channelTitles得到16个计数下有多少"items"(代表播放列表)。  希望有所帮助。