My application used to get a list of profile photos Friends photos 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 just a few photos from ZZZZZ (last). Not even all of them come back. If I try to delete YYYY, ZZZZ in the list, it works fine, even if I use the IN operator, it returns me all the profile photos of this friend.
Am I missing something? Another friend of mine also tried this, but to no avail.
Could you guys try this in Explorer? :) Thanks!
source
share