java - How can i get Facebook post modified time -
this question has answer here:
currently working poller can fetch facebook post , facebook post comments. poller working in specific time interval.current problem if 1 post polled in not polling in next time have new comments.
example :- poller starts 10 . fetch post , comments before 10 next time poller running after 30 minutes time pole fetch new post 10 -10:30 not fetching posts have new comments .
is there solution finding post have update in between time interval.
i got answer stack on flow post
filtering facebook users profile feeds updated_time
it's possible using fql.
for example, modifying example on facebook developers site, can retrieve current user's posts wall/feed updated before december 30, 2009 @ 12am est so:
select post_id, actor_id, target_id, message stream source_id = me() , updated_time < 1262196000 limit 50
to knowledge can't filter updated_time using graph api.
Comments
Post a Comment