If I send a query to Facebook and it returns an error object (in JSON format), then I still want to be able to read and parse it, but in this case the status code is 500 and when I try to use getInputStream, I get:
java.io.FileNotFoundException: https://graph.facebook.com/search?type=bla&q=unicorn&access_token=...
at org.apache.harmony.luni.internal.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1061)
at org.apache.harmony.luni.internal.net.www.protocol.https.HttpsURLConnection.getInputStream(HttpsURLConnection.java:252)
What's the problem? How can I get the JSON Facebook returns in such a case?