使用 PHP 检索 Youtube 用户的播放列表

发布于 2024-12-18 10:25:59 字数 442 浏览 4 评论 0原文

您能给我提供一个有关如何使用 PHP 检索 Youtube 用户的播放列表的示例吗?

我已阅读开发人员指南:数据 API协议 – 播放列表,但我不明白。

这就是我想做的:

在此处输入图像描述

每个选项卡都是一个播放列表,我在其中显示播放器列表。在本例中,我们被放置在“波尔图”选项卡中。在右侧我显示列表中的视频,在播放器列表下方显示评论。

是否可以?

Could you offer me an example about how to retrieving a Youtube user's playlists with PHP?

I have read the Developer's Guide: Data API Protocol – Playlists, but I didn't understood.

This is what I would like to do:

enter image description here

Each tab is a play list where I show the player list. In this case we're placed ino 'Porto' tab. At the right I show the videos in the list and below the player list, show the comments.

Is it possible?

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

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

发布评论

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

评论(4

不交电费瞎发啥光 2024-12-25 10:25:59
//Playlist: PLAD954BCB770DB285, remove PL from name
$playlist_id = "AD954BCB770DB285";
$url = "https://gdata.youtube.com/feeds/api/playlists/".$playlist_id."?v=2&alt=json";
$data = json_decode(file_get_contents($url),true);
$info = $data["feed"];
$video = $info["entry"];
$nVideo = count($video);

echo "Playlist Name: ".$info["title"]['$t'].'<br/>';
echo "Number of Videos (".$nVideo."):<br/>";

for ($i = 0; $i < $nVideo; $i++){
    echo "Name: ".$video[$i]['title']['$t'].'<br/>';
    echo "Link: ".$video[$i]['link'][0]['href'].'<br/>';
    echo "Image: <img src='".$video[$i]['media$group']['media$thumbnail'][1]['url']."' /><br />";
}
//Playlist: PLAD954BCB770DB285, remove PL from name
$playlist_id = "AD954BCB770DB285";
$url = "https://gdata.youtube.com/feeds/api/playlists/".$playlist_id."?v=2&alt=json";
$data = json_decode(file_get_contents($url),true);
$info = $data["feed"];
$video = $info["entry"];
$nVideo = count($video);

echo "Playlist Name: ".$info["title"]['$t'].'<br/>';
echo "Number of Videos (".$nVideo."):<br/>";

for ($i = 0; $i < $nVideo; $i++){
    echo "Name: ".$video[$i]['title']['$t'].'<br/>';
    echo "Link: ".$video[$i]['link'][0]['href'].'<br/>';
    echo "Image: <img src='".$video[$i]['media$group']['media$thumbnail'][1]['url']."' /><br />";
}
橘和柠 2024-12-25 10:25:59

最新的 v3 API 即将开始。您需要一个 API 密钥。

https://www.googleapis.com/youtube/v3/videos?id=<video_id>&key=YOUR_API_KEY&part=snippet

The newest v3 API getting started. You need a API key.

https://www.googleapis.com/youtube/v3/videos?id=<video_id>&key=YOUR_API_KEY&part=snippet
嘿哥们儿 2024-12-25 10:25:59

这是一个很好的 PHP 脚本,用于检索 Youtube 和 Vimeo 用户的播放列表

https: //github.com/greghub/youtube-vimeo-api-playlist-to-database-importer

Here's a nice PHP script for Retrieving both Youtube and Vimeo user's playlists

https://github.com/greghub/youtube-vimeo-api-playlist-to-database-importer

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文