cách làm :
1: nơi bạn muốn số like /share hiển thị .
<div id="likebox"></div>
2 script bạn cần có để liên kết với facebook
<div id="fb-root"></div>đổi tên trang web hay url bất kỳ cần hiển thị http://shimivn.blogspot.com
<script src="http://connect.facebook.net/en_US/all.js"></script>
<script>
FB.init({
appId : '285421138263428',
status : true,
cookie : true,
xfbml : true
});
</script>
<script>
//<![CDATA[
$(document).ready(function() {
FB.api({
method: 'fql.query',
query:'SELECT like_count FROM link_stat WHERE url = "http://shimivn.blogspot.com"'
}, function(data) {
var xy = parseInt(data[0].like_count) + 1;
$('#likebox').html(xy);
// do something with the response
});
});
//]]>
</script>
đăng ký app facebook id 285421138263428
shi-end
No comments: