このhttps://code.google.com/p/google-api-php-client/source/browse/trunk/examples/contacts/simple.phpの 49 行目から 54 行目のようなコードを使用しました が、 invalid_grant エラー。Google API コンソールにアクセスしましたが、付与する Google コンタクト サービスをファイルできません。
私を助けてください。
このhttps://code.google.com/p/google-api-php-client/source/browse/trunk/examples/contacts/simple.phpの 49 行目から 54 行目のようなコードを使用しました が、 invalid_grant エラー。Google API コンソールにアクセスしましたが、付与する Google コンタクト サービスをファイルできません。
私を助けてください。
次の行に適切な設定を含めましたか? API コンソールでアプリケーション設定を作成し、それらの設定を以下のコードにプラグインする必要があります。すべての設定が正しければ、このコードは私にとって完璧に機能しました。
$client = new Google_Client();
$client->setApplicationName('Google Contacts PHP Sample');
$client->setScopes("http://www.google.com/m8/feeds/");
// Documentation: http://code.google.com/apis/gdata/docs/2.0/basics.html
// Visit https://code.google.com/apis/console?api=contacts to generate your
// oauth2_client_id, oauth2_client_secret, and register your oauth2_redirect_uri.
// $client->setClientId('insert_your_oauth2_client_id');
// $client->setClientSecret('insert_your_oauth2_client_secret');
// $client->setRedirectUri('insert_your_redirect_uri');
// $client->setDeveloperKey('insert_your_developer_key');