Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've following problem with Facebook SDK 3.0 for Android. I wanna get my (and my friends) profile picture without using their ProfilePictureView widget, so if I use Graph Explorer I see that Json response is:

{
   "data": {
         "url": "https://fbcdn-profile-a.akamaihd.net/hprofile-ak-ash4/372127_1377011138_1538716206_q.jpg", 
         "is_silhouette": false
    }
}

I need that "url" path to download and show the picture, but with the following code:

Request.executeGraphPathRequestAsync(Session.getActiveSession(), 
                                     "me/picture", 
                                      new Request.Callback() {
        @Override
        public void onCompleted(Response response) {                                        
            GraphObject go = response.getGraphObject();
            Log.i("APP_NAME", go.toString());           
        }
});

I obtain this:

GraphObject{graphObjectClass=GraphObject, state={"FACEBOOK_NON_JSON_RESULT":"����\u0000\u0010JFIF\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0001\u0000\u0000��\u0000"}}

Someone can help me please? Thanks

Cromir

share|improve this question

2 Answers

An easier way would be to execute a GET request to graph.facebook.com/USER_ID/picture so you don't have to first request an URL to the picture, and then execute another GET request to download the picture from the given URL.

Instead of using Request.executeGraphPathRequestAsync, just do a normal GET request to the URL above, e.g. http://graph.facebook.com/4/picture.

share|improve this answer
It works! Thank you!! – Cromir Nov 28 '12 at 22:27
What if I actually want to get the URL? The "Picture as Dictionary" setting seems to not help. – Karlo Jan 22 at 10:00
2  
the url is always graph.facebook.com/YOUR_USER_ID/picture – Jesse Chen Jan 22 at 20:37
When you get the GraphObject how do you manage the conversion for using the picture in an ImageView? – 5agado Apr 26 at 10:05
1  
my method above doesn't use a GraphObject, you'd just download the image over HTTP and load it (see stackoverflow.com/a/2472175/931354). otherwise, if you are using the android sdk to fetch a GraphObject, use our supplied ProfilePictureView to set the picture developers.facebook.com/docs/reference/android/3.0/… – Jesse Chen Apr 27 at 19:37

You probably need to enable "Picture As Dictionary" on the advanced settings of your app in the developer console at https://developers.facebook.com/apps

share|improve this answer
This setting is enabled, in fact I obtain a Json response and not only url as string. – Cromir Nov 28 '12 at 22:05

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.