Google禁止索引Api

时间:2019-02-05 12:00:01

标签: google-api google-indexing-api

我创建了一个服务帐户并获取了一个密钥,然后打开了Index Api。 在搜索控制台中,该站点已通过验证,并且对服务帐户的访问已完成。我使用以下代码,但出现错误403 Forbidden

require_once 'some_path/vendor/autoload.php';
$client = new Google_Client();
$client->setAuthConfig( $path_to_key );
$client->addScope( 'https://www.googleapis.com/auth/indexing' );
$httpClient = $client->authorize();
$response = $httpClient->get( 'https://indexing.googleapis.com/v3/urlNotifications/metadata?url=' . urlencode( $url ) );
$status_code = $response->getStatusCode();

我在这行之后明白了

$httpClient = $client->authorize();

此对象应具有accessToken或refreshToken。我如何查找问题以及为什么未收到该问题?

0 个答案:

没有答案