Configuring app to facebook Error : "App is misconfigured for Facebook login.."

android, facebook, java

Solution

I got the same error a few days ago, in my case it was due to android key mismatch. here is how i fixed it if it may help u too,

Open Util.java in facebook sdk, set private static boolean ENABLE_LOG=true; now run your app and enter the your email id and password,facebook sends back a signature if there's a key mismatch. you'll find this key(signature) in logcat. Just copy this key and paste it in app dashboard. That should fix the problem. Remember to set private static boolean ENABLE_LOG=true; back to false

Problem

Possible Duplicate: App is misconfigured for Facebook login : Android Facebook integration issue I'm trying to integrate facebook into my app. When I press the login button and filling the email and password, I'm getting an error in the app saying : " App is misconfigured for Facebook login.. " and then I have to press "Okay" button and it closes. I have already filled the fields in my facebook app, here's a picture: Also, in the logcat when I press the "login" button (the button the I created that pops the facebook login). I see the following error: Failed to find provider info for com.facebook.katana.AttributionIdProvider Why the facebook login isn't working as well? EDIT: After I press the Okay button, the logcat doesn't throw any error.

Original source

Related problems