Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've been trying to figure out how to use the Google account manager to simply provide a way for users to Login to my app.

I have the AuthToken returning, but how can I get some unique info on the account that won't change for example a uniqueID or something so that I can use it to login the user?

share|improve this question

1 Answer

up vote 2 down vote accepted

The Account object you get from AccountManager has a name field which is the user's email address. This should be unique since they are all managed by Google and require a password to set up.

Depending on what permissions you asked for when getting the AuthToken, you can query the endpoint https://www.googleapis.com/oauth2/v1/userinfo?alt=json&access_token=YourTokenHere and get back a bunch of information about the account.

The response will look something like this:

{
 "id": "1234567890",
 "email": "joseph.mother@gmail.com",
 "verified_email": true,
 "name": "Joe Mama",
 "given_name": "Joe",
 "family_name": "Mama",
 "link": "https://plus.google.com/1234567890",
 "picture": "https://lh6.googleusercontent.com/-abcd/abcd/abcd/1234/photo.jpg",
 "gender": "male",
 "locale": "en"
}

The id field here is also unique and has the bonus of being used across Google services.

share|improve this answer

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.