I want to implement FB like button and retrieve number of counts by a specific user for the events listed in the page. I inserted following code after the body tag -
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({
appId : 'appid',
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true // parse XFBML
});
FB.Event.subscribe("edge.create", function(targetUrl) {
$('.fb_edge_comment_widget.fb_iframe_widget').remove()
console.log('edge.create');
});
FB.Event.subscribe("edge.remove", function(targetUrl) {
console.log('edge.remove');
});
FB.Event.subscribe('auth.authResponseChange', function(response) {
//alert('The status of the session is: ' + response.status);
//with this code, if user is not logged in, he is prompted for log in
});
};
(function() {
var e = document.createElement('script');
e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
e.async = true;
document.getElementById('fb-root').appendChild(e);
}());
</script>
I inserted the like button for each individual event as -
<div class="fb-like" data-href="<?= $event->Url ?>" data-send="false" data-width="450" data-show-faces="false"></div>
<meta property="og:title" content="<?= $event->title ?>"/>
<meta property="og:url" content="<?= $event->Url ?>"/>
<meta property="og:image" content="<?= $event->img ?>"/>
<meta property="og:description" content="<?= $event->desc ?>"/>
<meta property="og:site_name" content="sitename"/>
<meta property="og:type" content="Other"/>
<meta property="fb:app_id" content="appid"/>
I tested this by clicking like, but could not find any update on my FB wall. I'm not sure if this is working or not. Can anybody guide me if whatever I'm doing is correct ? I have added an Ajax call to increment and decrement the likes count on events edge.create and edge.remove respectively. Is using edge.create to get exact number of likes is correct ?