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 am using facebook sdk to login via facebook and getting null as access token.I am geting access expires but not geting access token.In my app I need to share image and if the user is not logged in thru facebook,it has to authenticate initially and then share the image.I am using SSO and fragment concept.

Please find the code below

String[] permissions = {"publish_stream"};
final static int AUTHORIZE_ACTIVITY_RESULT_CODE = 0;

facebook = new Facebook(APP_ID);
mAsyncRunner = new AsyncFacebookRunner(facebook);
facebook.authorize(getActivity(), permissions, AUTHORIZE_ACTIVITY_RESULT_CODE,
            new DialogListener() {
                public void onComplete(Bundle values) {
                        System.err.println("Inside oncomplete");
                        //getProfileInformation();

                }

                public void onFacebookError(FacebookError error) {
                    System.err.println(error.toString()+ "Facebook.authorize Error: ");
                    try {
                        dialog.dismiss();
                    } catch (Exception e) {
                    }
                    dialog=null;
                }

                public void onError(DialogError e) {
                        System.err.println(e.toString()+ "Facebook.authorize DialogError: ");
                        Log.d(this.getClass().getName(),"Facebook.authorize DialogError: "
                                                                    + e.toString());
                        try {
                                dialog.dismiss();
                        } catch (Exception e1) {
                            // TODO: handle exception
                        }
                        dialog=null;
                }


                public void onCancel() {
                    System.err.println("Facebook authorization canceled");
                    Log.d(this.getClass().getName(),"Facebook authorization canceled");
                    try {
                        dialog.dismiss();
                    } catch (Exception e) {
                        // TODO: handle exception
                    }
                    dialog=null;
                }
});

Inside fragment Activity

@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
   super.onActivityResult(requestCode, resultCode, data);
   System.out.println("------------------------------>Inside activity");

    if (mFragmnt != null)       
        mFragmnt.myCallBack(requestCode, resultCode, data);

}

Inside Fragment

public void myCallBack(int requestCode, int resultCode, Intent data) {
   if(facebook!=null){
        facebook.authorizeCallback(requestCode, resultCode, data);
        System.err.println("------------------------------>result code"+resultCode);
        System.err.println("------------------------------>Inside oncomplete");
        System.out.println("access token in fb activty----->"+facebook.getAccessToken());
        System.out.println("access expiry in fb activty----->"+facebook.getAccessExpires());
   }
}
share|improve this question
1  
you should use Facebook SDK 3.0 – thepoosh Jan 21 at 12:37

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.