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'd like to track when people click the Facebook "Like" button on my website.

I have a small script set-up, but it doesn't seem to work and I'm out of ideas of what it could be. Any suggestions? The AppID is correct and this script is just for testing so don't mind the lack of validation:

index.html

<html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com/2008/fbml">
  <head>
    <title>FB Like Test</title>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  </head>
  <body>
      <div id="fb-root"></div>

<script type="text/javascript">

$(document).ready(function() {  

window.fbAsyncInit = function() {
    FB.init({appId: 'x', status: true, cookie: true, xfbml: true});
    FB.Event.subscribe('edge.create', function(href, widget) {
        $.ajax({
            type: 'POST',
            url: 'like-sql.php',
            data: ({liked : 1})
        });
    });

    FB.Event.subscribe('edge.remove', function(response) {
        $.ajax({
            type: 'POST',
            url: 'like-sql.php',
            data: ({liked : 0})
        });
    });

};
(function() {
     var e = document.createElement('script');
     e.type = 'text/javascript';
     e.src = 'http://connect.facebook.net/nl_NL/all.js#appId=x&amp;xfbml=1';
     e.async = true;
     document.getElementById('fb-root').appendChild(e);
}());
});  
</script>

 <fb:like href="http://x.x.x" layout="button_count" show_faces="true"  width="500"></fb:like>

  </body>
</html>

like-sql.php

<?php    
$status = $_POST['liked'];    
mysql_query("UPDATE `fb_like` SET umk_like = $status WHERE user_id = '3432'");    
?>

I'm new to this whole jQuery ajax thingy, so I don't really know how I should debug this. Any suggestions are welcome :)

EDIT: Nevermind guys I got it.

I'm testing this in an external file, where I don't have jQuery included by default ;) I can't believe it took me this long to figure it out, lol. Thanks anyway for all the help!

share|improve this question
the fb-root div exists? – Sascha Galley Jul 26 '11 at 9:58
sounds like same thing you looking for stackoverflow.com/questions/6791734/sql-query-in-fb-javascript/… – gowri Jul 26 '11 at 10:01
@sascha: yes, I've updated the index.html with the total code – priktop Jul 26 '11 at 10:03
@gowri: It's actually a different question now, and I wanted it to be noticed. – priktop Jul 26 '11 at 10:04
Try adding in the success:function(data) and error:function(jqXHR, textStatus, errorThrown) in your ajax call Then you can alert those variables and see what's going on – TommyBs Jul 26 '11 at 10:53
show 3 more comments

2 Answers

Try to alert() something in the event listener itself, to see if it is subscribed correctly

FB.Event.subscribe('edge.create', function(href, widget) {
    alert('Like caught !');
    $.ajax({
        type: 'POST',
        url: 'like-sql.php',
        data: ({liked : 1})
    });
});

and add notify=true to fb:like

<fb:like notify="true" href="http://x.x.x" layout="button_count" show_faces="true"  width="500"></fb:like>

I had the same problem with "comment.create", and I solved it by notify="true", and subscribing to "comments.add" ! but I still can't subscribe to "comment.remove"!

share|improve this answer
I do get the alert, but the notify=true doesn't help me out :( – priktop Jul 26 '11 at 13:08
Can I trigger something from the like-sql.php file, to check if it runs through the file correctly? – priktop Jul 26 '11 at 13:10
Got it, check my updated post :) – priktop Jul 26 '11 at 13:32
thats great .. I have a question, as Like button doesn't work with me. I am running on localhost, are u running on localhost too? – Bero Jul 26 '11 at 15:25
Yes, maybe it's the FB AppId settings? I've set the Domain and URL of my AppID to localhost. – priktop Jul 26 '11 at 15:32
show 2 more comments
up vote 0 down vote accepted

Nevermind guys I got it.

I'm testing this in an external file, where I don't have jQuery included by default ;) I can't believe it took me this long to figure it out, lol. Thanks for all the help though!

share|improve this answer

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.