我试图获得一个排除播放列表和频道的列表。
文档说设置参数type = video会这样做。 https://developers.google.com/youtube/v3/docs/search/list
然而,参数似乎没有效果,我仍然得到一个播放列表作为最佳结果。
GET https://www.googleapis.com/youtube/v3/search?part=snippet&maxResults=3&q=Demi+Lovato+Sorry+Not+Sorry&type=video&videoSyndicated=any&key={YOUR_API_KEY}
谢谢。
答案 0 :(得分:0)
它对我有用,也许是个老虫子? 我的功能
fetchVideos(query: string) {
return this.http
.get(`https://www.googleapis.com/youtube/v3/search?part=snippet&maxResults=5&q=${query}
&type=video
&key=KEY`)
.pipe(
map(response => console.log(response) )
);
}