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.

Is there a way to get user's real name as set in Google account?

I can use AccountManager.get(ctx).getAccountsByType("com.google") to get user's google email address. However I'd like to get real name, for greeting user nicely in my app.

Is there some Android API to get this info?

share|improve this question
Do you use the account for anything else? If not you would request the USE_CREDENTIALS permission just for this. This permission is very powerful and should only be requested by an app if there is a serious reason. – Robert Aug 20 '12 at 9:50
Yes I do need USE_CREDENTIALS for other features. – mice Aug 20 '12 at 9:54

1 Answer

You can do this only in Android 4.0 (API level 14 +)

Please take a look at this post.

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.