I'm trying to use Foursquare's search venue in my Android application. My URL must be correct, it works OK in a browser, but in my Android app I get an IOException: java.io.FileNotFoundException. I guess something is wrong with my HTTP request, but i can'r figure out what. Can you please help me with that?
new Thread() {
@Override
public void run() {
Looper.prepare();
try
{
URL url = new URL( FSQR_URL +
"venues/search?ll=" + Float.toString(latitude) + "," + Float.toString(longitude) +
"&client_id=" + FSQR_CLIENT_ID +
"&client_secret=" + FSQR_CLIENT_SECRET +
"&v=" + timeMilisToString(System.currentTimeMillis()));
HttpURLConnection urlConnection = (HttpURLConnection) url.openConnection();
urlConnection.setRequestMethod("GET");
urlConnection.setDoInput(true);
urlConnection.setDoOutput(true);
urlConnection.connect();
String responseBody = streamToString(urlConnection.getInputStream());
try
{
JSONObject response1 = new JSONObject(responseBody);
JSONObject response2 = new JSONObject(response1.getString("response"));
setSearch(new JSONArray(response2.getString("venues")));
}
catch (JSONException e)
{
mResult.onError(e.toString());
}
}
catch (ClientProtocolException e)
{
mResult.onError(e.toString());
}
catch (IOException e)
{
mResult.onError(e.toString());
}
}
}.start();
FSQR_URLstart withhttp:? – Class Stacker Feb 3 at 13:03setDoOutput()(btw, you need not do that I'd say) and fails uponconnect()? Have you logged the resulting URL as a string and validated it? WHat are the details of the Exception you get (usee.getMessage()instead ofe.toString())? – Class Stacker Feb 4 at 7:24