Home > OS >  HMAC authentication with Azure
HMAC authentication with Azure

Time:05-26

I am trying to follow this doc to HMAC authentication with Azure. https://docs.microsoft.com/en-us/azure/azure-app-configuration/rest-api-authentication-hmac.

It said to get these from Azure portal

Credential - <Access Key ID>
Secret - base64 decoded Access Key Value. base64_decode(<Access Key Value>)

My question is do I get this from ?

If yes, what is the Access Key Value, and what is my Access Key ID?

CodePudding user response:

what is the `Access Key Value`, and what is my `Access Key ID`?

You can get the Access Key Value and Access Key ID from the Azure portal like below:

Create app configuration then goto-->settings-->Access keys, here you can find the id(credential) and secret(value).

enter image description here

  • Related