views:

10

answers:

0

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!

related questions