Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to find out the latest comments and likes on a facebook page given a timestamp. Is there a way we can fetch this data from the facebook API? For example : If a user A posted something on my page 30 days back, and user B liked the post and commented on it today. I need to get these activities in the response if I try and find out all activities on my page in the past 2 days (even if the post is 30 days old).

share|improve this question
What have you tried? – Jan Gerlinger Oct 4 '12 at 9:05

1 Answer

That is not working via the API, the since parameter only works on posts. A possibility is:

comments_after_that_time = 1349285260;

$comments = json_decode(file_get_contents("https://graph.facebook.com/[yourpost_id]/comments?access_token=xxx"));

foreach($comments->data as $comment)
{
    if(strtotime($comment->created_time) > comments_after_that_time)
    {
    echo "we have a new comment";
    }
}
share|improve this answer
Well, I already had this plan as a backup for both - comments as well as likes. I was just looking if there was a way to get it using the Graph API. Anyways thanks for the solution. – user1589465 Oct 4 '12 at 9:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.