Gå til innhold

Function app

Authenticating from client

Keys

If the function app you want to access is using keys as authentication type or "authType": "function", you need to create a host key to be able to access your functions. Navigate to the Function app in the Azure portal, and create a new host key.

image

A host key should only be used ONE single place - for easy rotation management of the key. If you need to access the function from something - create a new key.

To access a function with the key, it is reccommended to pass the key in the header "x-functions-key" (Headers: { "x-functions-key": <your-key> }) . If you have to use url query params, you pass it as ?code={key] in the url.

Entra ID / Azure AD authentication

If the function app you want to access is using Entra ID as authentication, you need to create or use an app registration to be able to access it. - First create or find the app registration you want to use to represent you / the client, and give it API permission for the App function you want to access. image - If admin consent is required, grant it, or get an admin to grant it. - Create a new secret or upload a certificate on the app registration you are using as the client. image - You should now have all you need to get an access token you can use to access the function app https://learn.microsoft.com/en-us/azure/databricks/dev-tools/service-prin-aad-token - TODO: Add examples on how to get the access token