need URL of JWT based login page for metabase

Aidan Fitzpatrick 1 Reputation point
2021-06-25T20:43:43.593+00:00

Hello,

Sorry if this is very basic, my speciality is in Linux and open source.

I need to setup Azure active directory JWT login for Metabase, the problem is that I started using both about 4 hours ago and I'm totally lost.

Does anyone know how to do this? Metabase is asking for "URL of JWT based login page" but I have no idea where to go in Azure active directory to enable that or to get the URL.

Does anyone have any guidance?

Microsoft Entra ID
Microsoft Entra ID
A Microsoft Entra identity service that provides identity management and access control capabilities. Replaces Azure Active Directory.
19,466 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Siva-kumar-selvaraj 15,551 Reputation points
    2021-06-28T13:33:47.947+00:00

    Hello @Aidan Fitzpatrick ,

    Thanks for reaching out and welcome to Microsoft Q&A community !!!

    You can find Azure AD authentication endpoints including metadata link for Oauth/OpenID connect (JWT token) from App registration blade in Azure AD portal as shown below or just accessing to following link which take you to the same page.

    109828-image.png

    For using OAuth2.0/OIDC protocol (JWT token) with Azure AD, there are two endpoints that are available:

    1. /authorize endpoint: This endpoint is used when the user tries to get Authenticated and request a Code and IdToken from Azure AD in return for a successful Authentication.
    2. /token endpoint: Then the second endpoint that is called is the /token endpoint and to this endpoint, the previously received code from AAD is submitted to get an access-token to make further requests to access Azure AD protected APIs, for eg: Microsoft Graph API.

    You can find more details on the auth flows here:

    Hope this helps.

    -----------

    Do let us know if this helps and if there are any more queries around this, please do let us know so that we can help you further. Also, please do not forget to accept the response as an Answer; if the above response helped in answering your query.

    1 person found this answer helpful.