我正在使用以下代码从搜索控制台获取我的网站的统计信息:
$client = new Google_Client();
$creds = $client->loadServiceAccountJson('---JSON FILE---', 'https://www.googleapis.com/auth/webmasters.readonly');
$client->setAssertionCredentials($creds);
$service = new Google_Service_Webmasters($client);
$ressource = $service->searchanalytics;
$options = new Google_Service_Webmasters_SearchAnalyticsQueryRequest();
$options->setStartDate('2015-11-11');
$options->setEndDate('2015-11-11');
try{
$response = $ressource->query('http://www.example.com/', $options);
} catch (Exception $e){
echo $e->getMessage();
}
我使用谷歌服务帐户来授权 api 调用,但它给了我错误:
调用 POST https://www.googleapis.com/webmasters/v3/sites/http%3A%2F%2Fwww.example.com%2F/searchAnalytics/query时出错:(403) 用户对站点“http”没有足够的权限*://www.example.com/'。另请参阅: https: //support.google.com/webmasters/answer/2451999。
我还将服务帐户的电子邮件地址作为所有者添加到我的搜索控制台属性中,但错误仍然存在。我不知道了,我做错了什么?