We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When I try to retreive Email from facebook SocialPerson it gives NULL. Id and Name are bieng fetched correctly. Please help.
The text was updated successfully, but these errors were encountered:
I faced same issue. ASNE implemented with Facebook Android SDK v3.0, so I implemented workaround in my app:
Bundle bundle = new Bundle(); bundle.putString("fields", "email"); Request request = new Request(Session.getActiveSession(), "me", bundle, (HttpMethod) null, new Request.Callback() { @Override public void onCompleted(Response response) { String rawResponse = response.getRawResponse(); //Do whatever you want with json response } }); request.executeAsync();
Sorry, something went wrong.
Thank you Denis Maltsev
No branches or pull requests
When I try to retreive Email from facebook SocialPerson it gives NULL. Id and Name are bieng fetched correctly. Please help.
The text was updated successfully, but these errors were encountered: