Using Facebook Graph API, I want to get that all comments that presents in a page and filter them based on datetime. I've read this thread, but it doesn't help as expected.
I can get all post and limit using date for specific page e.g.:
graph.facebook.com/110432309005026/tagged?since=<unix timestamp>
Now I want to do the same to search all comments. This is how I do so far:
graph.facebook.com/110432309005026/tagged?fields=comments{id,from,message,created_time}
But how to filter the date of comment (not the date of post) ?
For example, I want to get all comment since '2015-04-25 00:00:00'
for all posts on my page.
Need your advice