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 writing an android application to get the Facebook user albums and photos and display in my Android application. I have created a Facebook App with APP_ID 281846961912565.

While creating the Facebook instance, I am passing this id as follows

facebook = new Facebook(APP_ID);

Using this instance, I am able to login to my FB account post on messages on facebook wall programatically. After logging in, I get an access_token.

I'm using the access token to get the album ids using facebook.request("https://graph.facebook.com/me/albums?access_token="+facebook.getAccessToken());

Now I get {"error":{"message":"Malformed access token ACCESSTOKENACCESSTOKEN?access_token=ACCESSTOKENACCESSTOKEN","t‌​ype":"OAuthException","code":190}}

Can any of you please help me resolve this issue and point out what i am doing wrong.

My code is as follows:

    private static final String[] PERMISSIONS = new String[] { "publish_stream","user_photos" };
public boolean saveCredentials(Facebook facebook) {
    Editor editor = getApplicationContext().getSharedPreferences(KEY,
            Context.MODE_PRIVATE).edit();
    editor.putString(TOKEN, facebook.getAccessToken());
    editor.putLong(EXPIRES, facebook.getAccessExpires());
    return editor.commit();
}

public boolean restoreCredentials(Facebook facebook) {
    SharedPreferences sharedPreferences = getApplicationContext()
            .getSharedPreferences(KEY, Context.MODE_PRIVATE);
    facebook.setAccessToken(sharedPreferences.getString(TOKEN, null));
    facebook.setAccessExpires(sharedPreferences.getLong(EXPIRES, 0));
    return facebook.isSessionValid();
}

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    facebook = new Facebook(APP_ID);
    requestWindowFeature(Window.FEATURE_NO_TITLE);
    setContentView(R.layout.facebook_dialog);
    String facebookMessage = getIntent().getStringExtra("facebookMessage");
    if (facebookMessage == null) {
        facebookMessage = "Test wall post";
    }
    messageToPost = facebookMessage;
}

R.layout.facebook_dialog is the dialog which pops up asking if a message should be shared on facebook or not. If yes the following method is called.

    public void share(View button) {
    if (!facebook.isSessionValid()) {
        loginAndPostToWall();
    } else {
        postToWall(messageToPost);
    }
}
   public void loginAndPostToWall() {
    facebook.authorize(this, PERMISSIONS, Facebook.FORCE_DIALOG_AUTH,
            new LoginDialogListener());
}
   class LoginDialogListener implements DialogListener {
    public void onComplete(Bundle values) {
        saveCredentials(facebook);
        if (messageToPost != null) {
            postToWall(messageToPost);
        }
    }

    public void onFacebookError(FacebookError error) {
        showToast("Authentication with Facebook failed!");
        finish();
    }

    public void onError(DialogError error) {
        showToast("Authentication with Facebook failed!");
        finish();
    }

    public void onCancel() {
        showToast("Authentication with Facebook cancelled!");
        finish();
    }
}

   public void postToWall(String message) {
    Bundle parameters = new Bundle();
    parameters.putString("message", message);
    parameters.putString("description", "topic share");
    try {
        facebook.request("me");
        String response = facebook.request("me/feed", parameters, "POST");
        Log.d("Tests", "got response: " + response);
        if (response == null || response.equals("")
                || response.equals("false")) {
            showToast("Blank response.");
        } else {
            showToast("Message posted to your facebook wall!");
        }
                    getImagesFromUserAlbum();
        finish();


    } catch (Exception e) {
        showToast("Failed to post to wall!");
        e.printStackTrace();
        finish();
    }
}

Later when I do a `private void getImagesFromUserAlbum() { facebook.getAccessToken();

    JSONArray albumss = null;
    String response = null;
    try {
        response = facebook.request("me/albums");

// `

I get the error {"error":{"message":"Malformed access token ACCESSTOKEN?access_token=ACCESSTOKEN","type":"OAuthException","code":190}}

Thanks for your help.

The code above is now the working copy. Thanks to Bartek.

share|improve this question

1 Answer

up vote 2 down vote accepted

If you look at the Errors page in the documentation you will see that when you get error 190 you should authorise/reauthorise the user.

I suspect that this happened to you because you first logged in, then added the permissions to access the albums to your application BUT did not log out and log back in. Hence, you need to obtain a new access token which will grant the new permissions to your application.

share|improve this answer
Also, the Facebook class is deprecated in the newest API. I'd look into updating your logic to work with that. – Wenger Jan 19 at 2:45
@Bartek: Thank you for your response. I logged out and then logged back in. But even then I get the same error. Now my access token is also different. Am I missing something please? – Namratha Jan 20 at 22:25
@Namratha It would be helpful if you posted your code with the question, otherwise I can only speculate. – Bartek Jan 21 at 12:39
@Bartek: I have edited my question to include the code. Thanks a lot for helping me out. Appreciate it very much. – Namratha Jan 21 at 16:17
@Namratha What does your PERMISSIONS variable look like? Also, where is your saveCredentials function? Did you try facebook.authorize with only 3 parameters? (without Facebook.FORCE_DIALOG_AUTH)? – Bartek Jan 21 at 23:41
show 5 more comments

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.