Youtube的Google API PHP客户端库未连接到Youtube

时间:2016-08-07 16:45:03

标签: php api youtube youtube-api youtube-data-api

我一直在尝试在youtube php客户端库中工作但无法连接它。

我已阅读并尝试使用google文档(google开发人员)和github存储库文档(https://github.com/google/google-api-php-client#installation)进行安装,使用composer或直接使用git进行克隆。

但每当我尝试浏览网页时,它总会显示一个空白页面。我试着调试它;在其中我开始知道 require_once' vendor / autoload.php' 一行,它正在停滞不前。

我的目录结构是:

/var/www/html/test/index.php(我的逻辑代码)

/ var / www / html / test / google-php-api-client(Php客户端API文件夹)

尝试1:直接从RELEASE下载(google-php-api-client-2.0.2)或使用Composer - 不工作

require_once 'google-api-php-client/vendor/autoload.php';   
$client = new Google_Client();
$client->setApplicationName("Client_Library_Examples");
$client->setDeveloperKey("MY_API_KEY");
$service = new Google_Service_Books($client);
$optParams = array('filter' => 'free-ebooks');
$results = $service->volumes->listVolumes('Henry David Thoreau', $optParams);
foreach ($results as $item) {
  echo $item['volumeInfo']['title'], "<br /> \n";
}

尝试2:从GitHub克隆(git clone -b v1-master https://github.com/google/google-api-php-client.git     ) - 不工作

请帮忙。感谢

set_include_path('google-api-php-client/src');
require_once 'Google/Client.php';
require_once 'Google/Service/YouTube.php';

在此次尝试中,代码未执行此行 require_once&#39; Google / Service / YouTube.php&#39;;

请帮助。

0 个答案:

没有答案