2

我正在尝试按类别 ID 和关键字搜索视频。

这是我的链接:

https://www.googleapis.com/youtube/v3/search?part=snippet&key=API_KEYs&videoCategoryId=10&q=bieber

我越来越:

{
 "error": {
  "errors": [
   {
    "domain": "youtube.search",
    "reason": "invalidSearchFilter",
    "message": "Invalid combination of search filters and/or restrictions.",
    "locationType": "parameter",
    "location": ""
   }
  ],
  "code": 400,
  "message": "Invalid combination of search filters and/or restrictions."
 }
}

我应该在我的 api 请求中更改什么?

4

1 回答 1

6

Data API 具有统一的搜索、含义,搜索返回视频、播放列表和频道。要按视频特定参数(如 videoCategoryId)过滤,您必须定义“type=video”

https://www.googleapis.com/youtube/v3/search?part=snippet&q=bieber&type=video&videoCategoryId=10&key={YOUR_API_KEY}
于 2013-08-30T14:26:31.747 回答