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.

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


                                    }
                                }
                            });
share|improve this question
post you code for detail – DjHacktorReborn Mar 10 at 6:53
@DjHacktorReborn I edited it and added my code – Mohamed Gaber Mar 10 at 7:03
@DjHacktorReborn I tried the webview or the hackbook and it doesn't work also :S – Mohamed Gaber Mar 10 at 8:03
check out my answer, I've updated it – Zakharov Roman Mar 10 at 8:28

1 Answer

I think, that you could try this:

Try to debug your app, in onSessionstateChange see for Exception not null. If your signature does not match, you will receive right signature of your app in Exception (also you could see it in logcat), than past it to FaceBook dev console.

UPDATE:

Following code works for me:

@Override
protected void onSessionStateChange(SessionState state, Exception exception) 
{
    if (exception != null)
    {   
        Log.i(TAG, exception.toString());
    }
    if (state.isOpened()) 
    {
        Request request = Request.newMeRequest( this.getSession(),
                                    new Request.GraphUserCallback() 
        {
            @Override
            public void onCompleted(GraphUser user, Response response) 
            {

            }
        });
        Request.executeBatchAsync(request);
    }
}

If your keyhash does not match, you will see it here in LogCat

if (exception != null)
{   
    Log.i(TAG, exception.toString());
}
share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.