问题
I want to get a email of facebook login User but I am not success still to now. Can anybody help me that it is possible using a Facebook_Android API or not? explain with code if answer yes.
回答1:
Check this post for getting Email of the User :
String response=ZValues.authenticatedFacebook.request("me");
JSONObject obj = Util.parseJson(response);
useremail=obj.getString("email");
Util class will be available in Facebook code by default.
来源:https://stackoverflow.com/questions/7835262/can-i-get-a-login-user-email-using-android-facebook-graph-api