Search code examples
androidasana

HTTP 1.1 400 Bad Request - Android client Asana


I am just playing around with the Asana API. So whenever I make a request, I am always getting back Bad Request error.

So what I got is this:

public class Asana {

    private static String apiKey;
    private DefaultHttpClient httpClient;
    private final String apiUrl = "https://app.asana.com/api/1.0/";

    public Asana(String key) {
        apiKey = key;
        httpClient = new DefaultHttpClient();
    }

    public void get(String target) {
        new APIRequest().execute(target);
    }

    private class APIRequest extends AsyncTask<String, Void, HttpResponse> {

        protected HttpResponse doInBackground(String... params) {
            String query = apiUrl + params[0];

            Log.d("#query", query);

            HttpGet get = new HttpGet(query);
            String cred = apiKey + ':';
            String encodedKey = Base64.encodeToString(cred.getBytes(), Base64.DEFAULT);

            Log.d("#encodedKey", encodedKey);

            get.setHeader("Authorization", "Basic " + encodedKey);
            get.setHeader("Content-Type", "application/json; charset=UTF-8");

            Log.d("#getRequestLine", get.getRequestLine().toString());

            /*httpClient.getCredentialsProvider().setCredentials(
                    new AuthScope(AuthScope.ANY_HOST, AuthScope.ANY_PORT, AuthScope.ANY_REALM, AuthPolicy.BASIC),
                    new UsernamePasswordCredentials(apiKey, "")
            );*/

            HttpResponse resp = null;
            try {
                resp = httpClient.execute(get);
            } catch (ClientProtocolException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            } catch (IOException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            } finally {
                httpClient.getConnectionManager().shutdown();
            }

            return resp;
        }

        protected void onPostExecute(HttpResponse response) {
            StatusLine statusLine = response.getStatusLine();
            ByteArrayOutputStream out = new ByteArrayOutputStream();

            Log.d("#statusLine", statusLine.toString());

            try {
                response.getEntity().writeTo(out);
            } catch (IOException e1) {
                // TODO Auto-generated catch block
                e1.printStackTrace();
            }

            Log.d("#out", out.toString());
        }
    }

}

Using cURL or Simple REST client(Chrome), I am able to get back correct results.

Am I doing something wrong with the above code?


Solution

  • Ok, so I fixed the problem myself. I think the problem was with the authentication.

    Instead of setting manually the Authorization header, I am now using this:

    get.addHeader(BasicScheme.authenticate(new UsernamePasswordCredentials(apiKey, ""), "US-ASCII", false));
    

    And it's working fine now and I can get the correct results.

    If someone is interested, there is a Java library for the Asana API at github.