SELECT object_id, src_big FROM photo WHERE album_object_id IN (SELECT object_id FROM album WHERE owner=)
I use this query to get photos of some user, which is friend of other user, which provided friend_photos permissions for my app. And I get a lot of photos. Now, when I open this profile in Facebook (and I'm not a friend of this user), I don't see most of these photos (probably they are only for friends).
Question is: how do I filter such non-public photos with the API? I don't need anything that is not visible to general public...
There is album visibility field, but it's available only to album owner.