Showing posts with label facebook likes. Show all posts
Showing posts with label facebook likes. Show all posts

Saturday, 20 April 2013

Get number of likes on page from facebook by ajax request.

You can get number of likes of page from facebook by ajax request

Here is example
$.ajax({
            type: "POST",
            contentType: "application/json; charset=utf-8",
            url: "http://graph.facebook.com/https://www.facebook.com/Cyprusjetset",
            dataType: "json",
            success: function (data) {
                alert(data.likes);
            },
            error: function (result) {
                alert("Sorry no data found.");
            }
});