Can I get a login user Email using Android Faceboo

2019-09-20 11:21发布

问题:

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.