For example i would like to achieve https://graph.facebook.com/search?q=mark&type=user
,
and I am trying:
FB.api('/search?q=mark&type=user', function(response){
for(x in response) alert(x);
});
}
Please, help!
For example i would like to achieve https://graph.facebook.com/search?q=mark&type=user
,
and I am trying:
FB.api('/search?q=mark&type=user', function(response){
for(x in response) alert(x);
});
}
Please, help!