嗨所以我正在尝试使用 google api 客户端从播放列表中删除视频,到目前为止我一直收到错误的参数错误。这是我现在的代码。
if($access_token && $client = \GoogleClient::requestPermission($access_token)) {
$youtube = new \Google_Service_YouTube($client);
$resultMain = $youtube->playlistItems->delete("id,snippet", array('id' => $video_id, 'playlistId' => $playlist_id));
}else{
App::abort(500,"Cannot authenticate account");
}
我在做什么错,任何帮助表示赞赏。谢谢!