使用 YouTube API (PHP) 按 ID 获取播放列表条目?

发布于 2024-12-27 07:52:07 字数 473 浏览 0 评论 0原文

我目前正在进行一个涉及 YouTube API 的项目。我正在使用 Zend Gdata,在此之前一切都很顺利。

我需要根据播放列表的 ID 获取 Zend_Gdata_YouTube_PlaylistListEntry 。我已经设法通过一些摆弄来检索视频:

$feed = $yt->getVideoFeed('http://gdata.youtube.com/feeds/api/playlists/'.$id.'?v=2');
$playlist = new Zend_Gdata_YouTube_PlaylistListEntry($feed->getDOM());

但是,我需要使用方法 $playlist->getPlaylistVideoFeedUrl(),在这种情况下它返回 NULL

任何有关这方面的帮助表示赞赏=)

I'm currently in the middle of a project that involves YouTube API. I'm using the Zend Gdata, and everything has gone nicely until this.

I need to get a Zend_Gdata_YouTube_PlaylistListEntry based on the ID of the playlist. I have managed to retrieve the videos with some fiddling:

$feed = $yt->getVideoFeed('http://gdata.youtube.com/feeds/api/playlists/'.$id.'?v=2');
$playlist = new Zend_Gdata_YouTube_PlaylistListEntry($feed->getDOM());

However, I need to use the method $playlist->getPlaylistVideoFeedUrl(), and it returns NULL in this case.

Any help regarding this is appreciated =)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

ぶ宁プ宁ぶ 2025-01-03 07:52:07

知道了:

$url = 'http://gdata.youtube.com/feeds/api/playlists/'.$input['id'].'?v=2';
$feed = $yt->getPlaylistVideoFeed($url);

Got it:

$url = 'http://gdata.youtube.com/feeds/api/playlists/'.$input['id'].'?v=2';
$feed = $yt->getPlaylistVideoFeed($url);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文