通过YouTube API检索视频不会返回任何内容

时间:2014-04-12 17:58:22

标签: php youtube-api

我正在尝试检索一些YouTube视频,我使用http://www.w3resource.com/API/youtube/tutorial.php中的脚本

我已将我的推荐人设置为

  

mydomain.com /

https://console.developers.google.com/project

表单会显示,但只要我搜索某些内容,就不会返回任何空白页面。

是否应将引荐来源设置为脚本的完整路径?

    <?php
if ($_GET['q'] && $_GET['maxResults']) {
  // Call set_include_path() as needed to point to your client library.
  require_once ('Google_Client.php');
  require_once ('Google_YouTubeService.php');

  /* Set $DEVELOPER_KEY to the "API key" value from the "Access" tab of the
  Google APIs Console <http://code.google.com/apis/console#access>
  Please ensure that you have enabled the YouTube Data API for your project. */
  $DEVELOPER_KEY = '*****';

  $client = new Google_Client();
  $client->setDeveloperKey($DEVELOPER_KEY);

  $youtube = new Google_YoutubeService($client);

  try {
    $searchResponse = $youtube->search->listSearch('id,snippet', array(
      'q' => $_GET['q'],
      'maxResults' => $_GET['maxResults'],
    ));

    $videos = '';
    $channels = '';

    foreach ($searchResponse['items'] as $searchResult) {
      switch ($searchResult['id']['kind']) {
        case 'youtube#video':
          $videos .= sprintf('<li>%s (%s)</li>', $searchResult['snippet']['title'],
            $searchResult['id']['videoId']."<a href=http://www.youtube.com/watch?v=".$searchResult['id']['videoId']." target=_blank>   Watch This Video</a>");
          break;
        case 'youtube#channel':
          $channels .= sprintf('<li>%s (%s)</li>', $searchResult['snippet']['title'],
            $searchResult['id']['channelId']);
          break;
       }
    }

   } catch (Google_ServiceException $e) {
    $htmlBody .= sprintf('<p>A service error occurred: <code>%s</code></p>',
      htmlspecialchars($e->getMessage()));
  } catch (Google_Exception $e) {
    $htmlBody .= sprintf('<p>An client error occurred: <code>%s</code></p>',
      htmlspecialchars($e->getMessage()));
  }
}
?>

<!doctype html>
<html>
  <head>
    <title>YouTube Search</title>
<link href="//www.w3resource.com/includes/bootstrap.css" rel="stylesheet">
<style type="text/css">
body{margin-top: 50px; margin-left: 50px}
</style>
  </head>
  <body>
    <form method="GET">
  <div>
    Search Term: <input type="search" id="q" name="q" placeholder="Enter Search Term">
  </div>
  <div>
    Max Results: <input type="number" id="maxResults" name="maxResults" min="1" max="50" step="1" value="25">
  </div>
  <input type="submit" value="Search">
</form>
<h3>Videos</h3>
    <ul><?php echo $videos; ?></ul>
    <h3>Channels</h3>
    <ul><?php echo $channels; ?></ul>
</body>
</html>

我的API密钥来自: enter image description here

2 个答案:

答案 0 :(得分:0)

你从哪里获得“API密钥”?我没有在开发人员的控制台中看到“访问”选项卡。 https://developers.google.com/youtube处的所有示例都显示设置客户端ID,客户端密钥和范围。

答案 1 :(得分:0)

Stack Overflow不会让我编辑我的答案所以我正在创建一个新答案。该教程似乎在使用OAuth客户端ID /机密和API密钥之间来回切换。 AFAIK,您需要一个客户端ID /机密才能访问登录YouTube所需的信息。您使用API​​密钥来访问公共信息。对于您正在使用的示例,它只列出公共信息,因此它使用API​​密钥。

要创建API密钥,请单击Public API Access下的Create New Key按钮,选择Server Key并输入Web服务器的IP地址。这为您提供了一个API密钥,您可以在脚本中将其设置为DEVELOPER_KEY。我按照该过程操作,示例脚本工作正常。