0
我正在使用v3 of the Youtube API並試圖獲取我頻道播放列表的列表。獲取包括未列出的YouTube播放列表的列表
它正在工作,但它只返回具有status.privacyStatus
的public
的播放列表。
如何檢索unlisted
的播放列表?
這是我正在使用的呼叫。
public function getPlaylists($channelId)
{
$this->_quotaConsumed += 3;
return $this->getService()
->playlists
->listPlaylists('id,snippet,status', array(
'channelId' => $channelId,
'maxResults' => 50,
));
}
我正在使用OAuth服務帳戶。