1

次のコードを使用して Google プラスのプロフィール情報を取得しようとすると、

$client = new Google_Client();
$client->setClientId(Config::get('services.google.clientId'));
$client->setClientSecret(Config::get('services.google.clientSecret'));
$client->setRedirectUri(Config::get('services.google.redirectUri'));
$client->setScopes(['profile', 'login' ]);

$id_token = $this->request->input('idToken');


$token_data = $client->verifyIdToken($id_token)->getAttributes();

$googlePlus = new Google_Service_Plus($client);
$userProfile = $googlePlus->people->get('me');

エラーが表示されます

exception 'Google_Service_Exception' with message 'Error calling GET https://www.googleapis.com/plus/v1/people/me: (403) Daily Limit for Unauthenticated Use Exceeded. Continued use requires signup.' in /home/bepolite/websites/goodies/vendor/google/apiclient/src/Google/Http/REST.php:110

このコードは以前は機能していましたが、私は何も変更しませんでした。

また、composer を使用してダウンロードした公式の Google php API を使用しています。

"google/apiclient": "^1.1"

前もって感謝します

4

0 に答える 0