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'm searching for a way to get new comments on old posts preferably via FQL query. Is there a way to do this?

I tried:

select created_time, updated_time, post_id, actor_id, message, description, comments 
  from stream WHERE source_id=PAGE_ID AND updated_time > LAST_FETCH_DATE 
  AND CREATED_TIME < LAST_FETCH_DATE

I also tried:

select created_time, updated_time, post_id, actor_id, message, comments from stream 
  where source_id=PAGE_ID AND post_id = {PREFIX_*} AND time > 1360805449 

and:

SELECT id, fromid, post_fbid, text, time, post_id FROM comment WHERE 
  CONTAINS("STREAM_POST_PREFIX")

I know that there are two similar questions on Stackoverflow already, but they both haven't been answered and I'm somehow not able to comment on them.

share|improve this question
I think the query should work, the only problem is that updated_time is no indexed field, right? – Jan B Feb 14 at 17:46

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.