I am trying to search the Facebook API from my application using javascript FB.api(url, success function) and the JSON object that comes back contains the error: “Search queries are unsupported for this connection.”
The url I’m using is: “https://graph.facebook.com/search?q=Bamboo&type=page&access_token=”, which works when I’m testing it in browser
Why is my search unsupported???
The problem is your url. You only put your graph api command in the url parameter, thus the “https://graph.facebook.com” shouldn’t be included.
For using the search call,
and not the following