我能够通过 API Explorer 成功地向 Youtube Analytics API 发出请求。我的代码正在尝试使用 Google PHP Client 库,特别是 Google_Service_YouTubeAnalytics 类。不幸的是,没有关于这个类的文档。
我正在客户端上设置 ID 和断言凭据。我相当有信心这是正常工作,因为如果我将私钥更改为我知道不正确的东西,我会得到:
{"code":400,"error":"Error refreshing the OAuth2 token, message: '{\n \"error\" : \"invalid_grant\"\n}'"}
但是当我插入正确的私钥时,我得到以下响应:
{"code":400,"error":"Error calling GET https:\/\/www.googleapis.com\/youtube\/analytics\/v1\/reports?ids=channel%3D%3DCHANNEL_ID&start-date=2014-09-01&end-date=2014-09-05&metrics=views%2Cuniques: (400) Invalid query. Query did not conform to the expectations."}
它没有告诉我什么是无效的查询(这将非常有帮助),所以我不知道我可能做错了什么。任何帮助表示赞赏。
这是我发出请求的代码:
$client = new \Google_Client();
$client->setApplicationName(self::APP_NAME);
// set some stuff
$client->setClientId( self::CLIENT_ID );
$client->setClientSecret( self::CLIENT_SECRET );
$client->setAssertionCredentials(new \Google_Auth_AssertionCredentials(
self::CRED_ID,
[
"https://www.googleapis.com/auth/youtube.readonly",
'https://www.googleapis.com/auth/yt-analytics.readonly'
],
self::youtubeKey()
));
$youtubeService = new \Google_Service_YouTubeAnalytics($client);
$resp = $youtubeService->reports->query(
self::CHANNEL_ID,
'2014-09-01',
'2014-09-05',
'views,uniques'
);