Reputation: 75
I am trying to get data of my Facebook photos using:
[self.facebook requestWithGraphPath:@"me/photos" andDelegate:self]
but the result I am getting is empty data. I am getting friends list with this:
[self.facebook requestWithGraphPath:@"me/friends" andDelegate:self]
Has anybody encountered this?
Upvotes: 0
Views: 931
Reputation: 31870
You should call me/permissions
to see what permissions the access token has prior to making your call to the photos. Ensure it has user_photos turned on before making that call.
Upvotes: 1