Requirements
- Azure account
API_URLof the Hoop gateway instance
Identity Provider Configuration
Create an Application
Login with your account at https://portal.azure.com/Ensure default delegated permissions:
- Go to Microsoft Entra ID > App Registration.
- Pick a name, and select the Supported account types as you see fit
- Register the application with
{API_URL}/api/callbackas the redirect URI.
We recommend using the option single tenant option for Supported account types. This will allow selecting exactly what groups to propagate to this application. This option is also required to propagate cloud-only groups as names (see more details below).
User.Read for sign in and read user profiles and email to view user’s email address.These attributes are typically created by default. If errors occur, ensure these options are set correctly.
Create the Client Credentials
- Go to App Registration >
{AppName} - In the overview page, copy the Application (client) ID value. This is the Client ID.
- Go to Certificate & Secrets > Client Secrets > New Client Secret
- Copy the Secret Value. This is the Client Secret
Configure Hoop Gateway
- Web App
- API
Go to Integrations > Authentication and fill in:
- Auth Method: OIDC
- Issuer URL:
https://login.microsoftonline.com/{tenant_id}/v2.0 - Client ID: the Application (client) ID from above
- Client Secret: the Secret Value from above
- Scopes:
{CLIENT_ID}/.default - Groups Claim:
groups
Configuring Groups Claims
The integration relies on groups propagated in theid_token. By default, Azure Entra ID propagates them in the groups claims.
The gateway needs to be configured to match the claim name of the groups.
This configuration will ensure to sync the groups when a user authenticates on Hoop.
By default the gateway uses the claim name
groups.
To change it, go to Integrations > Authentication and include a distinct group.Propagating Groups as Names
It’s possible to propagate groups with their display names for cloud groups.- Click on Manifest
- Edit the item groups under optionalClaims.idToken and optionalClaims.accessToken attributes and add the name cloud_displayname
- Make sure that groupMembershipClaims is set to ApplicationGroup
- Click on Save
For other kind of groups it’s possible to append additional
properties as sam_account_name, dns_domain_and_sam_account_name or netbios_domain_and_sam_account_name.Assign Groups to Application
- Go to Enterprise Application >
{AppName}> User and Groups > Add user/group - Select the desired groups and click on Select
- Click on Assign
This option requires an AD subscription that allows assigning groups to application.
Machine to Machine Access (M2M)
It is possible to access hoop by issuing access tokens using the Oauth2 Client Credentials Flow. The gateway validates and authenticates any access token generated by the app registered in Azure, provided that a service account is active on hoop. The only requirement is that the service account has the same Object ID as the application, which serves as its main identifier.Authentication only occurs when a token is issued by the identity provider. The service account resource simply maps the subject to identify who is accessing the API.
Creating a Service Account
To obtain the Object ID of the application navigate to: Azure Portal > Microsoft Entra ID > Enterprise Applications.
Creating an Access Token
- Go to App Registrations > Certificate & Secrets > New Client Secret and copy the secret value.
- Generate an access token from Azure:
APP_CLIENT_ID: the client ID of the applicationAPP_CLIENT_SECRET: the client secret from step 1TENANT_ID: the tenant ID of your Azure instance
- Verify access with the Hoop API:
If you receive a 401, ensure the
subject of the access token (the application’s Object ID) matches the subject used when creating the service account.