1

我试图在 box.com 上传一个文本文件。我正在使用 Android 异步 Http 客户端。我更喜欢使用它,因为它更干净。Box.com 文件上传说明:http: //developers.box.com/docs/#files-upload-a-file

我试过并且总是得到未找到访问令牌的错误。我不喜欢使用 android box.com sdk。

File myFile = new File(path_to_file + "test.txt"));
RequestParams params = new RequestParams();

params.put("filename", "test.txt");
params.put("parent_id", "0");

AsyncHttpClient client = new AsyncHttpClient();

client.addHeader("Authorization", "Bearer " + "TOKEN");
client.post("https://upload.box.com/api/2.0/files/content", params, new      AsyncHttpResponseHandler() {
@Override
        public void onSuccess(String response) {
            System.out.println(response);
        }
    });


Authentication error: Unable to respond to any of these challenges: {bearer=WWW-    Authenticate: Bearer realm="Service", error="invalid_request", error_description="The access token was not found."}
4

1 回答 1

0

我设法通过删除我包含的 Content-MD5 标头来解决这个问题(我忘了在上面提到它)。不知何故,标题中的值设置不正确。

于 2013-09-02T00:24:55.000 回答