Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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();

share|improve this question
Does FSQR_URL start with http:? – Class Stacker Feb 3 at 13:03
It starts with https: – QBA Feb 3 at 13:32
And do you see the request in the server log; does it find the resource or issue a 404 result code? – Class Stacker Feb 3 at 14:15
I don't see the server log. I try to log the response of the request, but It throws an exception sooner. The exception is: java.io.FileNotFoundException: api.foursquare.com/v2/venues/… – QBA Feb 4 at 3:44
Have you validated that your code passes setDoOutput() (btw, you need not do that I'd say) and fails upon connect()? Have you logged the resulting URL as a string and validated it? WHat are the details of the Exception you get (use e.getMessage() instead of e.toString())? – Class Stacker Feb 4 at 7:24
show 2 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.