2017-02-21 116 views
1

我如何開始使用API​​ SearchConsole(服務器到服務器應用程序)?我如何開始使用API​​ SearchConsole(服務器到服務器應用程序)?

我讀: https://developers.google.com/identity/protocols/OAuth2ServiceAccount 我不知道如何在PHP做SHA256withRSA -

註冊使用SHA256withRSA(也 稱爲RSASSA-PKCS1-v1_5中-SIGN與輸入的UTF-8表示SHA-256散列函數)

但我讀(使用谷歌API客戶端庫): https://developers.google.com/api-client-library/php/auth/service-accounts

$json_file = __DIR__.'/OAuth2-0-ec587a9ccbc0.json'; 

putenv('GOOGLE_APPLICATION_CREDENTIALS=/path/to/'.$json_file); 

$client = new Google_Client(); 
$client->useApplicationDefaultCredentials(); 

$admin = new Google_Service_SearchConsole($client); 

得到Error - Class 'Google_Service_SearchConsole' not found:

回答

0

您需要添加:

use Google_Service_SearchConsole;

在你的PHP文件或類的頂部。雖然

$searchConsole = new Google_Service_Webmasters($client);

你可能會尋找。

相關問題