HTTP 1.1 400 Bad Request - Android 客户端 Asana

jit*_*ose 2 android asana

我只是在玩 Asana API。所以每当我提出请求时,我总是会收到错误请求错误。

所以我得到的是这个:

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

}
Run Code Online (Sandbox Code Playgroud)

使用 cURL 或 Simple REST 客户端(Chrome),我能够得到正确的结果。

我上面的代码做错了吗?

jit*_*ose 5

好的,所以我自己解决了这个问题。我认为问题出在身份验证上。

而不是手动设置授权标头,我现在使用这个:

get.addHeader(BasicScheme.authenticate(new UsernamePasswordCredentials(apiKey, ""), "US-ASCII", false));
Run Code Online (Sandbox Code Playgroud)

它现在工作正常,我可以获得正确的结果。

如果有人感兴趣,github 上有一个用于 Asana API的 Java