To protect your Azure Function, set its authLevel to function and provide the function's key to be used inside the x-functions-key header. For more information, see the Azure Functions documentation.
authLevel
function
x-functions-key
To protect the secret key from being exposed, remove the code parameter and secret key from the URL. For example, use `https://foo.azurewebsites.net/api/bar` instead of`https://foo.azurewebsites.net/api/bar?code=secret`. Copy
To protect the secret key from being exposed, remove the code parameter and secret key from the URL. For example, use `https://foo.azurewebsites.net/api/bar` instead of`https://foo.azurewebsites.net/api/bar?code=secret`.
Readonly
Partially hidden on retrieval for security reasons.
To protect your Azure Function, set its
authLevel
tofunction
and provide the function's key to be used inside thex-functions-key
header. For more information, see the Azure Functions documentation.