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 the new facebook sdk in android to get the facebook albums. The code I am using is,

Session session = Session.getActiveSession();
Request request = new Request(null,
"https://graph.facebook.com/me/albums?access_token=" + session.getAccessToken());
Response response = Request.executeAndWait(request)

When I do a https://graph.facebook.com/me/albums?access_token=ACCESSTOKEN I see the valid Json.

The request object is,

{Request:  session: {Session state:OPENED_TOKEN_UPDATED, token:
{AccessToken token:ACCESSTOKEN permissions:[photo_upload, publish_stream, video_upload, share_item, installed, user_photos, status_update, create_note, publish_actions]},  
 appId:281846961912565}, graphPath: https://graph.facebook.com/me/albums?
access_token=ACCESSTOKEN, graphObject: null, restMethod: null, httpMethod: GET, parameters: Bundle[{migration_bundle=fbsdk:20121026}]}

But when I do a Response response = Request.executeAndWait(request); I get

{Response:  responseCode: 400, graphObject: null, error: {HttpStatus: 400, errorCode: 190, errorType: OAuthException, errorMessage: Malformed access token ACCESSTOKEN?format=json}, isFromCache:false}

Complete code is as follows:

private class FetchUserPhotos extends AsyncTask<String, Integer, Boolean> {

    private ProgressDialog pd = null;

    @Override
    protected void onPreExecute() {
        super.onPreExecute();
        pd = ProgressDialog.show(MainActivity.this, "WWD",
                "Fetching photos..", true, true);
    }

    @Override
    protected Boolean doInBackground(String... params) {
        Session session = Session.getActiveSession();
        Request request = new Request(null,
                "https://graph.facebook.com/me/albums?access_token="
                        + session.getAccessToken());

        Response response = request.executeAndWait();
        return true;
    }
    @Override
    protected void onPostExecute(Boolean result) {
        pd.dismiss();
    }

}

Could any of you please tell me if there is something wrong in the way i am accessing it please?

share|improve this question
please check the solution I have posted. – Pratik Sharma Jan 22 at 17:02

2 Answers

Declare this Async Task :

private class FBTask extends AsyncTask<Object, Object, Response> {        
    protected Response doInBackground(Object... arg0) {
        Request request = new Request(null,
                "https://graph.facebook.com/me/albums?access_token=" + session.getAccessToken());
        // Execute the request synchronously in the background
        // and return the response.
        return request.executeAndWait();
    }

    protected void onPostExecute(Response response) {
        // When the task completes, process
        // the response on the main thread
        onPostActionResponse(response);
    }

}

And call this task to execute :

new FBTask().execute(); 

Thanks.

share|improve this answer
Thanks for responding. But i get the same error even with this code. – Namratha Jan 22 at 17:14
@Namratha see my edited answer. – Pratik Sharma Jan 22 at 17:28
@Prathik: I had originally declared it as an async task. Please check my edited question. I have included the class there. – Namratha Jan 22 at 18:18
@Namratha RequestAsyncTask is another option for this. Have you tried that? – Pratik Sharma Jan 22 at 19:05
up vote 0 down vote accepted

Found the answer to this issue.The correct code is

        Session session = Session.getActiveSession();
        Request request = new Request(session, "me/albums");

        Response response = request.executeAndWait();

You don't have to specify the entire link and the accesstoken.

share|improve this answer
great piece of code. – Pratik Sharma Jan 22 at 19:08
@Pratik: Thanks for suggesting me the solutions and helping me debug. – Namratha Jan 22 at 19:56
its my pleasure. – Pratik Sharma Jan 22 at 19:57

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.