我正在使用 Google Indexing API来更新我网站的 URL。
我的代码如下:
$client = new Google_Client();
$client->setScopes(Google_Service_Indexing::INDEXING);
$service = new Google_Service_Indexing($client);
$service->urlNotifications->publish(new Google_Service_Indexing_UrlNotification([
'url' => $pageUrl,
'type' => 'URL_UPDATED'
]));
如何向此请求添加国家或地理位置,以便它仅将 URL 提交/更新到指定位置?
提前致谢