I'm using the graph API to fetch the photos from facebook and display in my Android application.
I'm able to get the JSON of the albums by using
https://graph.facebook.com/[USERID]/albums?access_token=[ACCESSTOKEN]
and able to parse the json and get the name and id of the albums.
But when I pass the album id to get the pictures in the album using https://graph.facebook.com/[ALBUMID]/photos, it is returning a blank json.
Main Json
"data": [
{
"id": "123456",
"from": {
"name": "My Name",
"id": "560123317"
},
"name": "My Photos",
"link": "https://www.facebook.com/album.php?fbid=123456&id=560123317&aid=474294",
"privacy": "everyone",
"type": "app",
"created_time": "2012-12-15T00:47:58+0000",
"updated_time": "2012-12-15T00:48:57+0000",
"can_upload": false
},]
The id I am passing is 123456 to https://graph.facebook.com/[ALBUMID]/photos and it is returning a blank json although the album has images in it.
Please point out if I am doing something wrong and help me in rectifying the issue.
Thanks in advance.