0

我正在使用以下代码从搜索控制台获取我的网站的统计信息:

$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

我还将服务帐户的电子邮件地址作为所有者添加到我的搜索控制台属性中,但错误仍然存​​在。我不知道了,我做错了什么?

4

2 回答 2

1

所以问题正在解决!

问题是首先你必须将服务帐户添加到搜索控制台属性,然后授予它权限,然后让他成为所有者,你不会再次获得权限错误!

在此处找到解决方案: Google Webmasters API for Java 返回空站点列表

于 2015-11-16T15:17:12.140 回答
0

检查该属性是否列在站点列表中:https ://developers.google.com/webmaster-tools/v3/sites/list

仔细检查属性 url 中的 https 和 www。

于 2015-11-15T15:49:19.473 回答