我正在使用Google Api PHP客戶端登錄用戶。我想獲取用戶電子郵件地址。我有以下代碼。Google Api獲取用戶電子郵件地址
範圍:
$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 )
的可能重複[要求谷歌返回電子郵件地址的OAuth的一部分(http://stackoverflow.com/questions/3128981/要求谷歌返回電子郵件地址作爲部分的oauth) – Quentin
https://www.googleapis.com/auth/userinfo.email – 2012-06-13 09:45:00
嘗試使用OAuth :: fetch抓取/ auth/userinfo .email(這將返回你以後)和/或/auth/userinfo.profile,並使用/ oauth2/v1/userinfo(全部通過www.googleapis.com) – AleksanderKseniya