授权Azure存储服务REST API [英] Authorization of Azure Storage service REST API

查看:88
本文介绍了授权Azure存储服务REST API的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我整天呆在第一次打电话给Azure Storage REST API的过程中.邮递员的回应表明,这是由于Azure身份验证中的错误所致,但我不知道出了什么问题.

I've been stuck for the whole day making my first call of Azure Storage REST API. Postman's response showed that it's due to error in Azure authentication, but I have no idea what's the problem.

以下是用于发送Azure Storage REST API的浏览器脚本:

Here is the browser script to send Azure Storage REST API:

function azureListContainers() {

var key = "key-copied-from-azure-storage-account";
var strTime = (new Date()).toUTCString();
var strToSign = 'GET\n\n\n\nx-ms-date:' + strTime + '\nx-ms-version:2015-12-11\n/myaccount/?comp=list';

var hash = CryptoJS.HmacSHA256(strToSign, key);
var hashInBase64 = CryptoJS.enc.Base64.stringify(hash);
var auth = "SharedKeyLite myaccount:"+hashInBase64;

console.log(strToSign);
console.log(auth);
console.log(strTime);

$.ajax({
    type: "GET",
    beforeSend: function (request)
    {
        request.setRequestHeader("Authorization", auth);
        request.setRequestHeader("x-ms-date", strTime);
        request.setRequestHeader("x-ms-version", "2015-12-11");
    },
    url: "https://myaccount.blob.core.windows.net/?comp=list",
    processData: false,
    success: function(msg) {
        console.log(msg);
    }
});
}

Chrome开发者工具没有其他原因就没有返回"Access-Control-Allow-Origin"标头,因此我复制了var authvar strTime的内容,并使用邮差工具创建了相同的请求:

Chrome Developer Tool just returned No 'Access-Control-Allow-Origin' header without further reason, so I copied the contents of var auth and var strTime, created the same request using Postman tool:

[Command]
GET https://myaccount.blob.core.windows.net/?comp=list


[Headers]
Authorization:SharedKeyLite myaccount:Z9/kY/D+osJHHz3is+8yJRqhj09VUlr5n+PlePUa8Lk=
x-ms-date:Tue, 09 Aug 2016 10:30:49 GMT
x-ms-version:2015-12-11


[Response Body]
<?xml version="1.0" encoding="utf-8"?>
<Error>
    <Code>AuthenticationFailed</Code>
    <Message>Server failed to authenticate the request. Make sure the value of Authorization header is formed correctly including the signature.
RequestId:9be3d595-0001-0012-4929-f2fde2000000
Time:2016-08-09T10:31:52.6542965Z</Message>
    <AuthenticationErrorDetail>The MAC signature found in the HTTP request 'Z9/kY/D+osJHHz3is+8yJRqhj09VUlr5n+PlePUa8Lk=' is not the same as any computed signature. Server used following string to sign: 'GET



x-ms-date:Tue, 09 Aug 2016 10:30:49 GMT
x-ms-version:2015-12-11
/myaccount/?comp=list'.</AuthenticationErrorDetail>
</Error>

对两个字符串进行比较后,我相信脚本中的var strToSign与Azure用于签名的字符串相同.但是仍然存在验证错误.请帮助指出问题所在.

After diff the two strings, I believe var strToSign in my script is the same as the string Azure used to sign. But still there was an authentication error. Please help indicate what's the problem.

推荐答案

Chrome开发者工具刚刚没有返回"Access-Control-Allow-Origin"标头

Chrome Developer Tool just returned No 'Access-Control-Allow-Origin' header

当您使用javascript直接从客户端向Azure存储服务器发送http请求时.这是常见的 CORS 问题.

As you are using javascript to send http requests against to Azure Storage Server directly from client. It's a common CORS issue.

发生此问题时,可以启用CORS,您的存储服务.简单来说,您可以利用 Microsoft Azure存储资源管理器来配置存储.

When you occur this issue, you can enable the CORS for your storage services. For simple, you can leverage Microsoft Azure Storage Explorer to configure your storage.

AuthenticationFailed

AuthenticationFailed

我在您的测试项目中根据您的代码段进行了两次修改,以使其正常工作.

I did two modifications based on your code snippet, in my test project to make it work.

  1. var hash = CryptoJS.HmacSHA256(strToSign, key);第二个参数应该是帐户密钥的base64解码,请参考
  1. var hash = CryptoJS.HmacSHA256(strToSign, key); The second parameter, should be a base64 decode from the account key, refer to the Azure Storage SDK for node.js
  2. In my test, I had to use SharedKey scheme and authenticate with SharedKey token to make your scenario to work.

这是我的测试代码段,仅供参考.

Here is my test code snippet, FYI.,

var key = "key-copied-from-azure-storage-account";
var strTime = (new Date()).toUTCString();
var strToSign = 'GET\n\n\n\n\n\n\n\n\n\n\n\nx-ms-date:' + strTime + '\nx-ms-version:2015-12-11\n/<accountname>/\ncomp:list';
var secret = CryptoJS.enc.Base64.parse(key);
var hash = CryptoJS.HmacSHA256(strToSign, secret);
var hashInBase64 = CryptoJS.enc.Base64.stringify(hash);
var auth = "SharedKey <accountname>:"+hashInBase64; 

此外,出于安全原因,请在后端Web服务器中实施Azure存储服务.与在客户端上使用纯JavaScript一样,会将您的帐户名和帐户密钥公开,这将增加您的数据和信息的风险.

Additionally, for security reason, please implement the Azure Storage Services in backend web server. As using pure javascript on client, will expose your account name and account key to public, which will raise the risk to your data and info.

这篇关于授权Azure存储服务REST API的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆