GoogleApiPHPクライアントを使用してユーザーをログインしています。ユーザーのメールアドレスを取得したいと思います。私は次のコードを持っています。
範囲:
$client->setScopes('https://www.googleapis.com/auth/userinfo.profile');
コード:
$request = new apiHttpRequest("https://www.googleapis.com/oauth2/v2/userinfo?alt=json");
$userinfo = $client->getIo()->authenticatedRequest($request);
$response = $userinfo->getResponseBody();
print "<pre>" . print_r(json_decode($response, true), true) . "</pre>";
これは私に次の詳細だけを与えます
Array ( [id] => 110084312800396764 [name] => Harsha M V [given_name] => Harsha M [family_name] => V [picture] => https://lh6.googleusercontent.com/-Xusc8lwgLIQ/AAAAAAAAAAI/AAAAAAAAAAA/sOthy23uJGk/photo.jpg [locale] => en )