I looked through some answers and I can't seem to get anything to work. Now I am wondering if this is because the site I am working on is currently only visible locally through XAMPP.
Here are a couple of code snippets of what I've tried:
<script>
FB.Event.subscribe('edge.create', location.href = 'test.php');
</script>
and
FB.Event.subscribe('edge.create', function(response) {
var xmlhttp = new XMLHttpRequest();
xmlhttp.open("POST", "test.php", true);
xmlhttp.send();
});
The facebook code seems to run but my php page is never called. Even a simple alert('You liked the URL: '); doesn't work. I can "like" the page and it shows-up in my FB wall as such.
This is what I have right after the body tag (copy-paste from FB):
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/all.js#xfbml=1";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
I saw a post somewhere claiming that if the URL being liked didn't match the URL where the button was clicked from this would not work. Well, I am clicking from "www.site-name.local" when the real URL is a .com. It seems to work as far as the liked URL showing-up on my FB wall but the even does not fire.
I just checked the Firebug console and I get:
FB is not defined
FB.Event.subscribe('edge.create',
I'd appreciate a shove in the right direction.