我嘗試了YouTube數據API V3,在此頁:https://developers.google.com/youtube/v3/docs/search/list谷歌YouTube數據API版本3,videoEmbeddable錯誤
每個請求工作得很好,只要videoEmbeddable參數留空。只要我將它設置爲true或任何,我收到一個錯誤的請求響應。
{
"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."
}
}
我錯過了什麼嗎?
你可以發佈你使用的代碼嗎? – celwell