Just trying to implement facebook integration with my android app but it shows me Misconfig for facebook login, I am sure of my hashkeys I generated it from this post and my facebook app config is like this
and it still gives me that error :S
Edit: my code
Request.executeMeRequestAsync(session,
new Request.GraphUserCallback() {
// callback after Graph API response with
// user object
@Override
public void onCompleted(GraphUser user,
Response response) {
if (user != null) {
userPassword = user.getId();
String email = user.getLink();
email = email.replace(".", "");
email = email
.replace("http://", "");
email = email.replace("https://",
"");
email = email.replace("/", "");
email = email + "@anydomains.com";
userMail = email;
new Login(true).execute();
// register with fb
}
}
});