Youtube V3 api加载多个播放列表

时间:2015-08-24 10:58:17

标签: api youtube playlist

我只想基于多个播放列表ID加载多个播放列表,问题是playlistid只能插入多个逗号分隔。

$PlylistIds = 'PLbVdwtmx18stbIbCu-bONmOSP4JLOPF9I, PL7668E699EA971785';

$response = file_get_contents("https://www.googleapis.com/youtube/v3/playlistItems?part=contentDetails,snippet&playlistId=$PlylistIds&maxResults=5&key=MYAPIKEY");
$searchResponse = json_decode($response,true);
print_r($searchResponse);

当我发送1个播放列表ID时,它可以工作,但是当我添加两个播放列表ID时,它会停止返回json结果。

我不想每次都使用LOOP向谷歌服务器发送请求,是否可以在一个请求中加载多个playlistids,而不是使用多个循环。

由于

0 个答案:

没有答案