Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to get information from user's profile via Google API? If it is possible, which API should I use?

I'm interesting in such information:

Also it would be cool to get other information from user's profile.

share|improve this question

2 Answers

up vote 18 down vote accepted

Add this to the scope - https://www.googleapis.com/auth/userinfo.profile

And after authorization is done, get the information from - https://www.googleapis.com/oauth2/v1/userinfo?alt=json

It has loads of stuff - including name, public profile url, gender, photo etc.

share|improve this answer
I used the above Urls but unable to get user's profile. Getting '{' only. Plz can u post some code or links. Thanks in advance. – Panache Sep 5 '11 at 13:39
can u elaborate how to get user profile using above urls...plz.. – Panache Sep 8 '11 at 13:36
Uhm, just authorize the request with OAuth 2. That URL returns data for the currently signed-in user. It'll give you an error if you make the request without sending the OAuth header though. – Bob Aman Jan 17 '12 at 11:29

scope - https://www.googleapis.com/auth/userinfo.profile

return youraccess_token = access_token

get https://www.googleapis.com/oauth2/v1/userinfo?alt=json&access_token=youraccess_token

you will get json:

{
 "id": "xx",
 "name": "xx",
 "given_name": "xx",
 "family_name": "xx",
 "link": "xx",
 "picture": "xx",
 "gender": "xx",
 "locale": "xx"
}

To Tahir Yasin:

This is a php example.
You can use json_decode function to get userInfo array.

$q = 'https://www.googleapis.com/oauth2/v1/userinfo?access_token=xxx';
$json = file_get_contents($q);
$userInfoArray = json_decode($json,true);
$googleEmail = $userInfoArray[email];
$googleFirstName = $userInfoArray[given_name];
$googleLastName = $userInfoArray[family_name];
share|improve this answer
How to get more information about the user ? – Harsha M V Jun 11 '12 at 18:40
1  
oauthssodemo.appspot.com/step/4 – eason Jun 27 '12 at 17:22
1  
how to can I use their response? – Tahir Yasin Feb 4 at 6:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.