I'm trying to access files in Azure File Service via REST API. According to MSDN, my request should contain a header like:
x-ms-version: 2015-02-21
x-ms-date: <date>
Authorization: SharedKey myaccount:CY1OP3O3jGFpYFbTCBimLn0Xov0vt0khH/D5Gy0fXvg=
I do see a primary and secondary access key in my Azure portal, but how can I construct the SharedKey string out of those information? I found some other posts explaining about SAS, but I don't think I can use Azure SDK in my client to construct such, and thinking of creating the HTTP request manually. Is this possible?