Я пытаюсь отформатировать запрос к Файловому API Azure и продолжаю получать неверный формат для x-ms-версии
Ошибка, которую я получаю:
<Message>The value for one of the HTTP headers is not in the correct format.\nRequestId:<ID>\nTime:2018-10-11T15:40:32.1744262Z</Message><HeaderName>x-ms-version</HeaderName>
Заголовки взапрос выглядит следующим образом:
Заголовки:
{ Authorization: 'SharedKey ACCOUNT:KEY' },
'x-ms-date': 2018-10-11T15:18:47.561Z,
'x-ms-version': '2018-03-28'
Вот код, который я использую ... (я тоже поместил запрос в объект Headers, и он делает то же самое)
// Create an HMAC using the storage account key
const hmac = crypto.createHmac('sha256', key);
// Build the Shared Key Signature
var date = new Date();
var apiVersion = "2018-03-28";
var stringToSign = "GET\n\n\n\n\n\n\n\n\n\n\n\nx-ms-date:"+ date + "\nx-ms-version:" + apiVersion + "\n/" + req.body.name + "\ncomp:list";
var utf8String = Buffer.from(stringToSign).toString('UTF8');
hmac.update(utf8String);
var signature = hmac.digest('base64');
// Make the request
request
.get(req.body.fileEndpoint + '?comp=list',
{
"Headers": {
"Authorization" : "SharedKey " + req.body.name + ":" + signature
},
"x-ms-date": date,
"x-ms-version" : apiVersion
}, function(error, response, body) {
console.log(error);
console.log(response);
console.log(body);
}
)