php - How can i keep a log of how many Facebook likes a page has? -
i want rank pages ammount of facebook likes have (via facebook api). there way me automatically insert value mysql via php when button clicked? or way me collect ammount of likes page insert value? there anyway of doing facebook api? :)
you can subscribe edge.create event:
http://developers.facebook.com/docs/reference/javascript/fb.event.subscribe/
fb.event.subscribe('edge.create', function(response) { // update database using ajax here or else... }); i have never tested should work according fb's documentation.
Comments
Post a Comment