Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there a way to get all of the photos form a given stream query? I tried the following but it returns an empty set.

SELECT pid, aid, src_big FROM photo WHERE pid IN (SELECT attachment.media.photo.pid FROM #feed)
share|improve this question
And what SELECT attachment.media.photo.pid FROM #feed returns? – Oleg Jan 11 '12 at 14:00
It returns the correct data sort of, but it is nested in 4 empty objects. – David Beck Jan 11 '12 at 17:48
Please, can you add this data to your post? – Oleg Jan 12 '12 at 9:20
@DavidBeck Did you finally find a solution for this? – Pulkit Goyal Dec 21 '12 at 16:38

1 Answer

Its tough to tell since I can't see your '#feed' query but more than likely you are missing a stream_filter query. This would give you something like the following 3 queries. Good Luck!

Query 'key':

SELECT filter_key
  FROM stream_filter
  WHERE uid = me() AND name = 'Photos'

Query 'feed':

SELECT attachment.media.photo.pid
  FROM stream
  WHERE source_id = {id here} AND filter_key IN (SELECT filter FROM #key)

Query 'photos':

SELECT caption, src_big, modified
    FROM photo
    WHERE pid IN (SELECT pid FROM #feed)
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.