Melakukan Pencarian Dengan Graph Facebook Menggunakan Jquery






Contoh Jquery kode :

<script>
$.ajax({
    type: "GET",
    url:"https://graph.facebook.com/search?q=video+funny&type=page&limit=1&paccess_token=[YourAccessTokenApp]",
    dataType: "jsonp",
    cache: true,
    success: function(data) {
    $.each(data.data, function(i, getdata){
$('#hasil').append(getdata.id+"<br/>");
    });
    }
});
</script>

<div id="hasil"></div>


Keterangan :
 type=page adalah kategori pencarian yaitu :

type=page
type=user
type=group
type=event
type=place

 [YourAccessTokenApp] adalah akses token aplikasi facebook.

Smoga bermanfaat.....!
Previous
Next Post »