I try in FQL to have latests photos of all my friends ordered by desc in one request but I have only photos of two friends in response to this query :
SELECT src_small ,owner,created FROM photo WHERE aid IN (
SELECT aid FROM album WHERE owner IN (
SELECT uid2 FROM friend WHERE uid1=me()
)
)ORDER BY created DESC
If I delete order by of my subquery , it's the same problem I have only photos of 5 friends
I have good permissions
It's very problematic for me , because i want to load the latest photos of the week ( include all friends and lists friends)
Do you have an idea or ever resolve this problem ?
Thanks very much for your help, I am totally stuck and disappointed