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 am developing a website,there are some "facebook like" buttons.If some one likes one of the link from my website HomePage it is posted in the wall of the respective person, and i get the post_id. I want to track all the activity done on the posted Link (i.e. like,comments,share).

  1. I am able to track the comments and likes upto the first level (i.e if some one shares the link, then I am not able to track the related likes / comments of the shared link).

  2. If more than one person is liking the same link from my homepage I am tracking by the post_id individually, is there any way that I can track by the link itself so that regardless whoever liked from my website I will get the like & comment details.

  3. Is it possible to get the timestamp of a like (When a person likes the shared link).

share|improve this question

1 Answer

  1. You can request the 'manage_notifications' permission which will allow you to read their notifications. the user would need to have notifications enabled for when someone likes or shares their post (by default this is the case). The notification object includes the other friend's id. more here: https://developers.facebook.com/docs/reference/fql/notification/

2 and 3: You could use javascript and get the user's fb ID as well as the time on the page itself and do stuff with it (this should work):

 FB.Event.subscribe('edge.create',
      function(response) {
        msg = "user id " + response.authResponse.userID + "liked this page at" + Date();
        console.log(msg);
       }
    );

More info https://developers.facebook.com/docs/reference/javascript/FB.Event.subscribe/

share|improve this answer
Will it return the user id who is liking the shared url from the facebook wall. – Mrinmoy Sen Sep 14 '12 at 19:15
you should be able to get that via the notifications object of the user using the key sender_id – Cooper Maruyama Sep 14 '12 at 21:37

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.