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 want to create/show an activity stream of everything that has been published/commented on behalf of my application. My question is, do I need to "farm" any "post" id's or am I able to call upon everything posted into the stream via my application from it's id in a FQL statement?

Thanks in advance!

share|improve this question

2 Answers

up vote 2 down vote accepted

You can not retrieve application stream, despite what the doc says.

Give a look at: http://bugs.developers.facebook.net/show_bug.cgi?id=13662

share|improve this answer

Actually in many cases you can use app_ID as the filter_key. This doesn't work for some apps reliably though and I don't know why...

select post_id, source_id, app_id, attachment, created_time, action_links
from stream
where filter_key in ('app_2339854854')
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.