我正在使用Google API客户端库 - 用于youtube data api v3的PHP(Beta) 我根据文档进行了播放列表操作: https://developers.google.com/youtube/v3/docs/playlistItems/list 但是我找不到使用API客户端库提供fields参数的方法。
有没有人知道我会去做什么?
由于
答案 0 :(得分:0)
fields
是标准查询参数(as defined here)。
Youtube API应该支持它,你可以将它传递给$params
数组参数,以及$maxResults
等。请参阅你提供的示例,看看{{1 }}
答案 1 :(得分:0)
在 $ queryParams
中定义...
// Define service object for making API requests.
$service = new Google_Service_YouTube($client);
$queryParams = [
'maxResults' => 3,
'type' => 'video',
'q' => 'car',
'fields' => 'items(snippet(title))'
];
$response = $service->search->listSearch('snippet', $queryParams);
...