In my Android application, I am trying to get the cover photo of the user from his Facebook account.
I can get the profile picture by using the below code.
profilePicUrl = new URL("http://graph.facebook.com/" + userId + "/picture?type=large");
profilePicBmp = BitmapFactory.decodeStream(profilePicUrl.openConnection().getInputStream());
The documentation specifies the following for retrieving the cover photo.
The user's cover photo (must be explicitly requested using fields=cover parameter)
Requires access_token
Returns : array of fields id, source, and offset_y
So, the structure of the JSON response would be something like this.
{
"cover": {
"cover_id": "10151008748223553",
"source": "http://sphotos-a.ak.fbcdn.net/hphotos-ak-ash4/s720x720/391237_10151008748223553_422785532_n.jpg",
"offset_y": 0
},
"id": "19292868552"
}
I am pretty new to Facebook Graph API and hence do not have much knowledge on how to go about this.
I tried this coverPicUrl = new URL("http://graph.facebook.com/" + userId + "/cover?type=large");
and also this coverPicUrl = new URL("http://graph.facebook.com/" + userId + "/fields=cover");
But I have not been able to get the cover picture of the user profile.
Searching online also did not yield any fruitful results.
Any help would indeed be appreciated.
Thanks!
