Facebook Graph API get page's comment -
using facebook graph api, want comments presents in page , filter them based on datetime. i've read this thread, doesn't expected.
i can post , limit using date specific page e.g.:
graph.facebook.com/110432309005026/tagged?since=<unix timestamp>
now want same search comments. how far:
graph.facebook.com/110432309005026/tagged?fields=comments{id,from,message,created_time}
but how filter date of comment (not date of post) ? example, want comment since '2015-04-25 00:00:00'
posts on page.
need advice
you can't looking however, filtering posts returned /tagged endpoint using since parameter.
since looking comments date when fetch posts date comments can date. request instead:
graph.facebook.com/110432309005026/tagged?fields=comments{id,from,message,created_time}&since=2015-04-25
Comments
Post a Comment