Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW

How to Enable User Groups in Qlik Sense Enterprise SaaS

100% helpful (1/1)
cancel
Showing results for 
Search instead for 
Did you mean: 
Andre_Sostizzo
Digital Support
Digital Support

How to Enable User Groups in Qlik Sense Enterprise SaaS

Last Update:

Jan 25, 2024 9:04:40 AM

Updated By:

Daniele_Purrone

Created date:

Aug 14, 2020 9:06:30 AM

This video demonstrates how to enable automatic user group creation when using Auth0 and Okta Identity Providers in Qlik Sense Enterprise SaaS.

This customization is provided as is. Qlik Support cannot provide continued support of the solution. For assistance, reach out to our Professional Services or engage in our active Integrations forum.

 



Please note: in order to make sure that Windows AD groups are sent from Okta to Qlik Cloud, make sure to:

  1. modify the filter in the "Groups claim expression" to add the AD groups
  2. allow groups to be read in OKTA API scopes

Please, refer to Okta support for instructions on how to do that.

Related Content:

Labels (2)
Comments
jfitz_chicago
Partner - Contributor III
Partner - Contributor III

Very helpful. I'm using Auth0. I used Roles to store group info.

groups box = /https:~1~1qlik.com~1groups

Advanced options claims = email openid profile https://qlik.com/groups

I created an API with the permissions to read groups. (Not 100% sure I needed to do that)

And I created a Flow in the Post Login section (Actions > Flows > Login) that added groups to the response.

/**
 * @param {Event} event - Details about the user and the context in which they are logging in.
 * @param {PostLoginAPI} api - Interface whose methods can be used to change the behavior of the login.
 */
exports.onExecutePostLogin = async (event, api) => {
  const namespace = 'https://qlik.com';
  if (event.authorization) {
    api.idToken.setCustomClaim(`${namespace}/groups`, event.authorization.roles);
    api.accessToken.setCustomClaim(`${namespace}/groups`, event.authorization.roles);
  }
}

 

Version history
Last update:
‎2024-01-25 09:04 AM
Updated by: