Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

The following FQL query works when i paste it on my browser and also works in the API explorer (xxxx is replaced with numbers as well as access token)

https://graph.facebook.com/fql?q=SELECT page_id from place WHERE (distance(latitude, longitude,"xxxxx","xxxxx") < xxxx)&access_token=<MY ACCESS TOKEN>

When i run the same code from my java application i get an HTTP 400 Error. Any idea what's causing this?

This following code implements the connection. getInputStream() throws an exception (Error 400)

connection = (URLConnection) new URL(url).openConnection();
input = connection.getInputStream();
share|improve this question
show how you initialize the url variable – Aviram Segal Jan 2 at 17:13

1 Answer

Did you try to URLEncode the "q" parameter value ? Something like :

String query = SELECT page_id from place WHERE (distance(latitude, longitude,"xxxxx","xxxxx") < xxxx)&access_token=<MY ACCESS TOKEN>;
String urlString = "https://graph.facebook.com/fql?q=" + URLEncoder.encode(query, "UTF-8"));
connection = (URLConnection) new URL(urlString ).openConnection();
input = connection.getInputStream();
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.