InspectUrlIndexRequest使用谷歌API PHP SDK给出一个未定义的调用错误



我试图通过SearchConsole API访问URL检查的检查函数,并不断获得未定义属性的通知:GoogleServiceSearchConsole::$index

$client = new GoogleClient();
$client->setAuthConfig(PATHT/TO/CREDS);
$client->setApplicationName(NAME);
$client->addScope("https://www.googleapis.com/auth/webmasters.readonly");
$client->authenticate($accessToken);
$service = new SearchConsole($client);
$queryRequest = new InspectUrlIndexRequest();
$queryRequest->setInspectionUrl(URL);
$queryRequest->setSiteUrl(SITE URL);
$response = $service->index->inspect;

它现在似乎知道函数存在,尝试了各种变体,但查看源代码,无法弄清楚。

解决了任何试图打破头部东西的人:

$service->urlInspection_index->inspect

是'urlInspection_index'而不是'index'。

相关内容

  • 没有找到相关文章

最新更新