Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to use Single Sign On feature to integrate Facebook to my app. It works on an emulator (shows the user authorization dialog), but not on a device with a Log message "Failed to find provider info for com.facebook.katana.provider.AttributionIdProvider".

The Key hash is probably correct since i'm not getting invalid key errors like this and also when I don't use SSO, but force the traditional way, it works fine.

It's not this problem either, because I have included the required code.

I have read this, but didn't help either.

My code looks like this:

public class LoginActivity extends Activity {

Facebook facebook = new Facebook("123425315215"); // my actual code is not that

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.login);

    facebook.authorize(this, new DialogListener() {
        public void onComplete(Bundle values) {Log.d("TAG","SUCCESS");}

        public void onFacebookError(FacebookError error) {Log.d("TAG","onFacebookError "+error.getMessage());}

        public void onError(DialogError e) {Log.d("TAG","onError "+e.getMessage());}

        public void onCancel() {Log.d("TAG","onCancel ");}
    });
}

@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
    super.onActivityResult(requestCode, resultCode, data);

    facebook.authorizeCallback(requestCode, resultCode, data);
}
}
share|improve this question
have you used Android hash Key..??? – SilentKiller Sep 27 '12 at 11:44
what happens when you debug the program? does it go into the onActivityResult? – thepoosh Sep 27 '12 at 11:46
If this is a problem with the hash key as asked by @SilentKiller, see if this works for you: stackoverflow.com/a/10516629/450534. The answer (in case it's a problem with the hash key) is in the 2nd comment than the actual answer itself. – IceMAN Sep 27 '12 at 11:49
nope, the program doesn't go to onActivityResult – sk1ll3r Sep 27 '12 at 12:27
@SiddharthLele i don't understand what you meant by "I had not created a hash key using my signing key. I just had the one hash key created using the debug.keystore default signing key." in the answer. i have generated the hash key using this command keytool -exportcert -alias androiddebugkey -keystore D:\.android\debug.keystore | openssl sha1 -binary | openssl base64 is that the correct way? – sk1ll3r Sep 27 '12 at 12:33
show 9 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.