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.

In my app, I have allowed users to signup through Facebook. When user logged in, I get access token. Now I want to get email address of the user. How to get that?

share|improve this question
go through this link – Vamshi Jan 12 '12 at 11:26

1 Answer

up vote 10 down vote accepted

First of all add permission

public static final String[] PERMISSIONS = new String[] {"email"};

String response=authenticatedFacebook.request("me");
JSONObject obj = Util.parseJson(response);
useremail=obj.getString("email");

where authenticatedFacebook is Facebook object.

Util will available along with Facebook SDK.

Ensure that you gave Email permission.

share|improve this answer
do i need a "built for mobile" facebook app to get user data from facebook(if he is logged in) or "built for web" is enough. because i already have a facebook web app, can i use that APP ID??? – Unknown Jun 5 '12 at 6:28
@Archie.bpgc I don't have idea about Web Application.. But i think we can use same App Id for both Web and Mobile – Venky Jun 5 '12 at 6:30
Util class is now deprecated. Better to user.getInnerJSONObject().getString("email"); – nawfal Jan 22 at 13:02

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.