Hi @Ho, Keith D
When it comes to retrieving the token, it depends on the provider you configured. The endpoint will be /.auth/login/<provider>
. As an example, if you're provider was Entra, then endpoint would /.auth/login/aad
.
The request will be redirect to the login page of the audience and tenant you configured. When the request is authenticated, the token gets stored on your function app for that session and is used for subsequent requests. Authentication and authorization - Azure App Service | Microsoft Learn goes into this in greater detail.