I am trying to get user album by using GRAPH API with function
facebook.request(contact.getFacebook_id()+"/albums")
but in return i get only string with no albums :
{
"data": [
]
}
It only happens to certain users IDs. For example there is no problem in quering
facebook.request(contact.getFacebook_id())
facebook.request(contact.getFacebook_id()+"/picture");
It happens only for quering albums and their pictures.
I have permissions: user_photos and friend_photos
contact.getFacebook_id() is for getting user ID (it is not null for, I have checked it)
After doing some reasearch it is not a bug. Facebook has another privacy settings for third party applications and its own application, due to that i was missled to conclusion that action mention in question is possible.