I have written a fql to get photo from facebook.
fql = 'SELECT caption, owner, pid, src_big, created
FROM photo
WHERE aid IN (SELECT aid
FROM album
WHERE owner IN (111111) )
LIMIT 1,10';
But I found sometimes the app cannot get the photo from the src_big column.
How to write a fql or any other methods to make sure the returned photo url (e.g.src_big) is accessible?