Can I get a login user Email using Android Faceboo

2019-09-20 10:56发布

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条回答
萌系小妹纸
2楼-- · 2019-09-20 11:40

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.

查看更多
登录 后发表回答