I am trying to invoke the REST API to view the content of Azure Storage table. Hope I have properly formed Authorization header value and I am getting below error. Please correct me where I am missing in below request (From REST Client app).
{
"method": "GET",
"transformRequest": [
null
],
"transformResponse": [
null
],
"url": "https://#####.table.core.windows.net/testDB",
"headers": {
"x-ms-date": "Thu, 28 Jun 2018 08:39:05 GMT",
"x-ms-version": "2018-06-28",
"Accept": "application/json;odata=nometadata",
"Authorization": "SharedKeyLite #####:########"
},
"data": "",
"timeout": {}
}
And Here is my response Headers:
{
"x-ms-request-id": "3fc23b14-2002-0037-04bc-0e9e56000000",
"date": "Thu, 28 Jun 2018 08:46:39 GMT",
"server": "Microsoft-HTTPAPI/2.0",
"content-length": "371",
"content-type": "application/xml",
"status": 400
}
and Response Body
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<error xmlns="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata">
<code>InvalidHeaderValue</code>
<message xml:lang="en-US">The value for one of the HTTP headers is not in the correct format.
RequestId:3fc23b14-2002-0037-04bc-0e9e56000000
Time:2018-06-28T08:46:40.1148690Z</message>
</error>
Here is the JAVA code, I used to generate SignatureString
private void printHash()
{
// https://mytestaccount.table.core.windows.net/testDB: this is the url form Azure portal displaying next to table
String secret = "I Updated my key here";
// Date for string to sign
Calendar calendar = Calendar.getInstance();
SimpleDateFormat sdf = new SimpleDateFormat("EEE, d MMM yyyy HH:mm:ss 'GMT'", Locale.US);
sdf.setTimeZone(TimeZone.getTimeZone("GMT"));
String date = sdf.format(calendar.getTime());
// canonicalizedResource, such as "/testaccount1/Tables"
String canonicalizedResource = "/testDB";
String stringToSign = date + "\n" + canonicalizedResource;
System.out.println(stringToSign);
// HMAC-SHA@%^
Mac sha256HMAC = null;
try {
sha256HMAC = Mac.getInstance("HmacSHA256");
SecretKeySpec secretKey = new SecretKeySpec(secret.getBytes(), "HmacSHA256");
sha256HMAC.init(secretKey);
String hash = Base64.encodeToString(sha256HMAC.doFinal(stringToSign.getBytes()), Base64.DEFAULT);
System.out.println(hash);
} catch (NoSuchAlgorithmException e) {
e.printStackTrace();
} catch (InvalidKeyException e) {
e.printStackTrace();
}
}