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.

I would like to query public posts from multiple Pages.

My FQL query looks like this:

SELECT post_id, source_id FROM stream WHERE source_id in (157528807603192, 127531603328)

This query returns only about 6 records.

However, if I use the two source_id in two separate query I got more than 20 item for both of them:

SELECT post_id, source_id FROM stream WHERE source_id in = 157528807603192

I couldn't find anything in the documentation stating that if you query multiple source_id you need different permissions.

Can anyone explain me what is happening here?

share|improve this question

1 Answer

up vote 1 down vote accepted

I've found the answer in the documentation. :(

http://developers.facebook.com/docs/reference/rest/stream.get/

"If you specify only one user ID in the source_ids array, you can return, at minimum, the last 50 posts from that user's profile stream (Wall) for the last 180 days (it likely can be more).

If you specify more than one user ID in the source_ids array, you can return posts in those streams only from the last few days (about one week)."

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.