My app used to get a list photos from Profile Pictures of friends with this FQL:
SELECT owner, src_big FROM photo
WHERE aid IN (
SELECT aid FROM album
WHERE name="Profile Pictures"
AND owner IN (XXXXXX,YYYYYYY,ZZZZZZZZ))
But now the response is only few photos from ZZZZZ (the last one). Even not all of them are returned. If I try to delete YYYY,ZZZZ in the list, it works fine, even I'm using IN operator, it returns me all profile pictures of that friend.
Am I missing something ? Another dev friend of mine tried it too, without success.
Could you guys please try it too in explorer? :) Thanks!