我正在尝试通过documented here方法通过其新API将照片上传到热门服务Dailybooth。

问题是服务器正在响应:

<html><head><title>411 Length Required</title>...

我用来发送此数据的代码在这里:
// 2: Build request
HttpClient httpclient = new DefaultHttpClient();
SharedPreferences settings = DailyboothShared.getPrefs(DailyboothTakePhoto.this);
String oauth_token = settings.getString("oauth_token", "");
HttpPost httppost = new HttpPost(
        "https://api.dailybooth.com/v1/pictures.json?oauth_token=" + oauth_token);
Log.d("upload", "Facebook: " + facebook);
Log.d("upload", "Twitter: " + twitter);
try {
    InputStream f = getContentResolver().openInputStream(snap_url);
    MultipartEntity entity = new MultipartEntity(HttpMultipartMode.BROWSER_COMPATIBLE);
    entity.addPart("picture", new InputStreamBody(f, snap_url.getLastPathSegment()));
    entity.addPart("blurb", new StringBody(blurb));
    entity.addPart("publish_to[facebook]", new StringBody(facebook));
    entity.addPart("publish_to[twiter]", new StringBody(twitter));
    httppost.setEntity(entity);
    HttpResponse response = httpclient.execute(httppost);
    Log.d("upload", response.toString());
    int statusCode = response.getStatusLine().getStatusCode();
    if (statusCode == 200) {
        // do something?
    } else {
        Log.d("upload", "Something went wrong :/");
    }
    Log.d("upload", EntityUtils.toString(response.getEntity()));
} catch (Exception ex) {
    ex.printStackTrace();
}

我不知道我在做什么错。

最佳答案

您正在使用StringBodyInputStreamBody类来描述MultipartEntity的内容。查看源代码,StringBody.getContentLength()返回字符串的长度,但是InputStreamBody始终返回-1,我猜这是针对需要在不知道数据大小的情况下将一些数据上传到服务器并在数据到来时开始上传的情况下完成的。流。

如果您希望能够设置内容长度,那么您需要事先知道流的大小,如果是这种情况,您可以采取这种方式设置InputStreamBody:

new InputStreamBody(f, snap_url.getLastPathSegment()) {

    public long getContentLength() {
        return /*your length*/;
    }
}

或将流转储到byte[]数组中,然后将ByteArrayInputStream传递给InputStreamBody,当然这样做会失去流功能,因为需要在将数据发送到内存之前将其缓存在内存中...

就像您说的那样,您正在处理图像吗,这个图像是不是File?如果是这样,您还可以使用FileBody返回正确的content-length

08-03 21:43