I have a application that monitors a businesspage for you, along with other sources like Twitter. For the purpose of internal comments and analytics I store the posts on the wall in our database.
Every 10 minutes I ask Facebook if there are new posts since the last time. I use "/me/feed?since=[10 mitutes ago]". The problem is when I have already stored the post and a new comment is added to this post, when I request the new posts this post is not returned.
I know this is because the created time is before the timestamp requested in the since call. But the updated time is not. Is there a way to set 'since' to the updated time in stead of the created time?
Extra case information
I also tried this using FQL instead of Graph API. But that method has a problem/bug.
I use this script on the pages of very large companies, like Heineken. On these pages, there are a few posts per hour and on busy times many posts per minute. But those are not the problem.
The problem is that I have a few posts, usually one or two a day, that are very interesting and have a lot of comments, and continue to have comments for days. Those 'large' posts are the most interesting of all, but they get suppressed out of my results because there are too many new posts.