使用 YouTube API (PHP) 按 ID 获取播放列表条目?
我目前正在进行一个涉及 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
知道了:
Got it: