使用RestSharp(C#)向aws发出请求

时间:2013-11-25 05:00:07

标签: c# rest amazon-s3 restsharp

我正在尝试将AWS S3的REST接口用于Web服务,该服务以git方式存储和检索文件(通过哈希和基于它的目录系统)。我正在使用RestSharp客户端库来进行这些调用,因为AWS SDK是不可能的(Web服务实际上需要与类似AWS的商店(如Hitachi HDS)一起工作),并且通常,因为更多的存储平台将是补充说,感觉标准化的方法最好是进行线上通信。

问题在于RestSharp可能会添加一些额外的负载,因为S3正在哭泣要保存多个数据元素。

以下代码是核心存储逻辑,应该注意我使用Ninject来处理任何依赖。

public bool PutBytesInStore(string piecehash, byte[] data)
        {
            string method = "POST";
            string hash;
            using (var sha1 = new SHA1CryptoServiceProvider())
            {
                hash = Convert.ToBase64String(sha1.ComputeHash(data));
            }

            string contentType = "application/octet-stream";
            string date = new DateTime().ToString("{EEE, dd MMM yyyy HH:mm:ss}");
            string file = string.Format("pieces/{0}/{1}/{2}", piecehash.Substring(0, 2), piecehash.Substring(0, 6),
                piecehash);

            //Creating signature
            var sBuilder = new StringBuilder();
            sBuilder.Append(method).Append("\n");
            sBuilder.Append(contentType).Append("\n");
            sBuilder.Append(date).Append("\n");
            sBuilder.Append(hash).Append("\n");
            sBuilder.Append(file).Append("\n");
            var signature = Convert.ToBase64String(new HMACSHA1(Encoding.UTF8.GetBytes(_password)).ComputeHash(Encoding.UTF8.GetBytes(sBuilder.ToString())));

            _request.Method = Method.POST;
            _request.AddFile(piecehash, data, piecehash);
            _request.AddHeader("Date", date);
            _request.AddHeader("Content-MD5", hash);
            _request.AddHeader("Authorisation", string.Format("AWS {0}:{1}", _identifier, signature));

            var response = _client.Execute(_request);

            //Check responses for any errors
            var xmlResponse = XDocument.Parse(response.Content);
            switch (response.StatusCode)
            {
                case HttpStatusCode.Forbidden:
                    ErrorCodeHandler(xmlResponse);
                    break;
                case HttpStatusCode.BadRequest:
                    ErrorCodeHandler(xmlResponse);
                    break;
                case HttpStatusCode.Accepted:
                    return true;
                default:
                    return false;
            }
            return false;
        }

问题在于发送的响应,读取;

<?xml version="1.0" encoding="UTF-8"?>
<Error>
    <Code>InvalidArgument</Code>
    <Message>POST requires exactly one file upload per request.</Message>      
    <ArgumentValue>0</ArgumentValue>
    <ArgumentName>file</ArgumentName>
    <RequestId>SomeRequest</RequestId 
    <HostId>SomeID</HostId>
</Error>

此消息上的AWS API似乎pretty sparse,我似乎无法弄清楚为什么RestSharp客户端会向有效负载添加两个以上的文件。

非常感谢任何帮助。

1 个答案:

答案 0 :(得分:0)

这是因为webkitboundary。请在邮递员上尝试一下-webkitboundary对于上传非常重要。