2017-02-21 6 views
1

API SearchConsole(サーバーからサーバーアプリケーション)をどのように使い始めることができますか?API SearchConsole(サーバーからサーバーアプリケーション)をどのように使用することができますか?

は私が読んで: はhttps://developers.google.com/identity/protocols/OAuth2ServiceAccount 私はPHPでSHA256withRSAを作る方法を知っていない -

サインオンとRSASSA-PKCS1-v1_5の-SIGNとして知られてもSHA256withRSA( を使用して入力のUTF-8表現SHA-256ハッシュ関数)

しかし、私は(Googleの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);

関連する問題