2
我試圖從YouTube API獲取特定關鍵字的搜索列表。從YouTube API獲取YouTube搜索列表
我已經試過:https://www.googleapis.com/youtube/v3/search?part=snippet&maxResults=50&q=elanco&key= {我的API KEY}
而且只給我的前50個結果。因此,我改變「的maxResults」等於2000
但隨後出現此錯誤:
{
"error": {
"errors": [
{
"domain": "global",
"reason": "invalidParameter",
"message": "Invalid value '2000'. Values must be within the range: [0, 50]",
"locationType": "parameter",
"location": "maxResults"
}
],
"code": 400,
"message": "Invalid value '2000'. Values must be within the range: [0, 50]"
}
}
有誰知道我怎麼能獲得超過50個結果?我的關鍵詞產生了大約1500個結果,我希望能夠看到所有這些結果。
謝謝!