在开发Google Chrome扩展程序时,我偶然发现了一个问题,我不确定我是否做错了什么,或者它是否是Youtube Data API v3错误。
所以问题是,即使我在"列表"调用中指定类型:"video",我也会得到播放列表结果。
为了确保我的代码没有问题,我去了:https://developers.google.com/youtube/v3/docs/search/list#try-it
我把以下内容放在田野上:
part: snippet
channelId: UCy1Ms_5qBTawC-k7PVjHXKQ
maxResults: 50
q: Content Patch
type: video
在结果上,我得到:
"id": {
"kind": "youtube#playlist", // < Playlist item :
"playlistId": "PLB9225A9DA3422059"
},
"kind": "youtube#searchResult",
"etag": ""oLweQuB9Vh7wAB9a0AIHg_K-wsM/dR9GDZWu_nfsoaj5bdrHQ3Ng_GA"",
"snippet": {
"publishedAt": "2012-10-31T13:02:09.000Z",
"channelId": "UCy1Ms_5qBTawC-k7PVjHXKQ",
"title": "Content Patch",
"description": "A daily gaming news show, which efficiently integrates opinionated commentary and also our viewers' feedback in a concise and to-the-point manner.",
谁能指出我正确的方向?谢谢你的时间。
这很可能是 API 中的一个错误,因为它似乎不再发生。