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.