这是获取视频信息的URL,您必须在其中放置VIDEO-ID和API-KEY:
https://www.googleapis.com/youtube/v3/videos?part=snippet&id=VIDEO-ID-HERE&key=YOUR-API-KEY-HERE
如何从中获取标题并将其另存为 PHP 中的变量?
这些内容将使用 PHP 客户端库为您提供与特定视频相关的信息:
<?php
require_once 'Google/autoload.php';
require_once 'Google/Client.php';
require_once 'Google/Service/YouTube.php';
$client = new Google_Client();
$client->setDeveloperKey('{YOUR-API-KEY}');
$youtube = new Google_Service_YouTube($client);
$videoResponse = $youtube->videos->listVideos('snippet', array(
'id' => '{YOUR-VIDEO-ID}'
));
$title = $videoResponse['items'][0]['snippet']['title'];
?>
<!doctype html>
<html>
<head>
<title>Video information</title>
</head>
<body>
Title: <?= $title ?>
</body>
</html>
API 请求的又一个解决方案
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script>
$(document).ready(function() {
$.get(
"https://www.googleapis.com/youtube/v3/videos",{
part : 'snippet',
id : 'VIODE_ID',
key: 'API_KEY'},
function(data) {
$.each( data.items, function( i, item ) {
alert(item.snippet.title);
});
}
);
});
</script>
谷歌开发者中有两个PHP示例。
此外,您可以在此页面底部尝试测试。输入part
(代码段)和id
(选择一个 YouTube ID)字段。它将通过 GET 请求和 JSON 响应向您展示。