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 get blank page in facebook authentication:

http://i43.tinypic.com/2u9391d.png - like this

I am using facebook API and my authentication code:

public void facebookAuthorize(){
    myPrefs = getPreferences(MODE_PRIVATE);
    String access_token = myPrefs.getString("access_token", null);
    long expires = myPrefs.getLong("access_expires", 0);

    if(access_token != null) {
        facebook.setAccessToken(access_token);

    }
    if(expires != 0) {
        facebook.setAccessExpires(expires);
    }

    /*
     * Only call authorize if the access_token has expired.
     */
    if(!facebook.isSessionValid()) {

        facebook.authorize(this, new String[] { "publish_stream", "read_stream", "offline_access" }, new DialogListener() {
            @Override
            public void onComplete(Bundle values) {
                SharedPreferences.Editor editor = myPrefs.edit();
                editor.putString("access_token", facebook.getAccessToken());
                editor.putLong("access_expires", facebook.getAccessExpires());
                editor.commit();
            }

            @Override
            public void onFacebookError(FacebookError error) {}

            @Override
            public void onError(DialogError e) {}

            @Override
            public void onCancel() {}
        });
    }
}

How to solve it?

share|improve this question
I presume that you are logging and can see that you are getting an onComplete? But without seeing your values, a possible reason (for what looks like a login error) is that your accesstoken is no longer valid. Try logging the accesstoken value and doing a login at the browser address bar (something like m.facebook.com/dialog/…; - you can check the syntax in the SDK dialog() method)? Another is that you have a Facebook app running and are having issues with SSO? – Torid Dec 6 '11 at 18:06

1 Answer

Did you add your app signature on the facebook app page? Facebook Android Tutorial Link

share|improve this answer
Yes I do it before. – Dawid Hyży Dec 6 '11 at 19:27

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.