除了Android

时间:2016-04-04 23:30:46

标签: java android amazon-web-services aws-lambda

我使用AWS Lambda为我的移动产品创建简单的上传服务。

在服务器上,我使用以下代码生成预签名的URL

var params = {
    Bucket: targetS3Bucket,
    Key: key,
    Body: '',
    ContentType: event.contentType,
    Expires: 60
};

s3.getSignedUrl('putObject', params, function (err, url){
    context.done(null, {
        'oneTimeUploadUrl': url,
        'resultUrl': urlPrefix + key
    });
});

其中targetS3Bucket是S3上文件夹的路径,key是文件本身的名称,urlPrefix是S3上文件的HTTP位置的根(即:s3.amazonaws.com/some-folder/

将此代码与内置HTTP库一起使用(也就是说,不使用任何aws SDK )可以在PC和iOS上正常运行,但不能在Android上运行。

最新版本的Android客户端代码如下所示:

uri = new URL(oneTimeUploadUrl);

// Setup Connection
HttpsURLConnection http = (HttpsURLConnection) uri.openConnection();
http.setDoOutput(true);
http.setRequestMethod("PUT");
​
// Write Data
OutputStream os = http.getOutputStream();
os.write(_bytes);
os.flush();
os.close(); // request gets sent off to the server

代码400始终失败。我尝试了一些改变编码的方法,使用非https版本的HttpsURLConnection和其他一些东西,但无济于事。

我更愿意避免引入AWS SDK,因为我只需要这个单一功能就可以工作,并且使用这个lambada端解决方案可以在除android之外的所有平台上实现。

以下是AWS返回的XML。返回的消息令人困惑,因为客户端从不更改令牌,并且同一进程在其他设备上成功。

<?xml version="1.0" encoding="UTF-8"?>
<Error>
    <Code>InvalidToken</Code>
    <Message>The provided token is malformed or otherwise invalid.</Message>
    <Token-0>{Token-0}</Token-0>
    <RequestId>{RequestId}</RequestId>
    <HostId>{HostId}</HostId>
</Error>

1 个答案:

答案 0 :(得分:2)

问题是HttpURLConnection默默地将Content-Type: application/x-www-form-urlencoded添加到请求中。这很烦人,因为在HttpURLConnection对象的请求中确定哪些标头并不容易。

反正。这是正确的代码

uri = new URL(oneTimeUploadUrl);

// Setup Connection
HttpsURLConnection http = (HttpsURLConnection) uri.openConnection();
http.setDoOutput(true);
http.setRequestMethod("PUT");
http.setRequestProperty("Content-Type"," "); // remove Content-Type header

// Write Data
OutputStream os = http.getOutputStream();
os.write(_bytes);
os.flush();
os.close(); // request gets sent off to the server

另请参阅:HttpURLConnection PUT to Google Cloud Storage giving error 403