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 Explo
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
.