gpt4 book ai didi

php - YouTube API 3.0

转载 作者:搜寻专家 更新时间:2023-10-31 22:05:13 24 4
gpt4 key购买 nike

我的身份验证工作正常,但是当我尝试使用 php 库获取类别列表时:

// $client is the google client object
$youtube = new Google_YoutubeService($client);
$youtube->videoCategories->listVideoCategories("id");

我收到回复:

'调用 GET 时出错 https://www.googleapis.com/youtube/v3/videoCategories?part=id : (400) 未选择过滤器'

listVideoCategories 中没有“过滤器”选项,唯一接受的参数是 $part 和可选参数……与过滤器无关?

最佳答案

显然您需要提供您想要的类别 ID 或您想要所有类别的区域。您可以尝试并在此处阅读详细信息:https://developers.google.com/youtube/v3/docs/videoCategories/list

这应该有效:

// $client is the google client object
$youtube = new Google_YoutubeService($client);
$categories = $youtube->videoCategories->listVideoCategories('id', array('regionCode' => 'US'));

关于php - YouTube API 3.0,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19876542/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com