Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Jan 25, 2024 4:30:34 AM
Apr 9, 2020 10:38:13 AM
The steps below are for an example test setup of SAML authentication using auth0 as Identity Provider with Qlik Sense Enterprise on Windows.
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.
Note: These steps assume an auth0 "Developer" account has already been created
{
"groups": [
"Everyone"
]
}
function (user, context, callback) {
if((user.user_metadata || {} ).groups){
context.idToken['https://qlik.com/groups'] = user.user_metadata.groups;
}
callback(null, user, context);
}
function (user, context, callback) {
context.idToken['https://qlik.com/sub'] = user.email;
callback(null, user, context);
}
Description | SAML_auth0 | An appropriate description |
Prefix | auth0 | This will be the prefix used when accessing Qlik Sense via URL |
Session cookie header name | X-Qlik-Session-auth0 | Needs to differ for every Virtual Proxy |
Authentication method | SAML | The authentication enabled via auth0 |
SAML host URI | https:// | The Qlik Sense Server |
SAML entity ID | https://.auth0.com | This can be found in the metadata file downloaded from auth0 under entityID |
SAML IdP metadata | Choose File: This is the xml file downloaded from Auth0 | The IdP metadata file downloaded from auth0 |
SAML attribute for user ID | See Claim Types (learn.microsoft) | This is also found in the metadata file from auth0 |
SAML attribute for user directory | [Auth0] | Directory name |
SAML signing algorithm | SHA-1 | Used by auth0 |
Wonder full, i have a question, when user makes logout, is not redirected to login page again, we wants this option
Hello @marcos_herrera
If SAML single logout is turned on, then the expected behaviour would be:
For more information about this feature, see SAML single logout.
If you need further assistance on how to implement the above, then our professional services can be engaged for direct assistance with this customization. See Professional Services. Alternatively, you can reach out to our larger userbase with your customization requirement in the Integrations forum.
All the best,
Sonja
auth0 no longer uses Rules for new implementations - instead Actions are used. There is information on the auth0 website about how to migrate from Rules to Actions. Has anyone done this?
Regards,
Paul Selous
Agreed, Paul!
I'd love to see this updated to get groups from Auth0 with Flows and Actions instead of Rules.
My claim is presenting as a source but it's not getting mapped in. I put it in as ~1https:~1~1qlik.com/groups. I see it in api/v1/diagnose-claims but I don't see it when I look at us.auth0.com/.well-known/openid-configuration. So I'm not sure where things are going wrong.
Hello @jfitz_chicago and @paulselousyoriz I'm looking into having this article reviewed. Thank you for expressing your interest.
All the best,
Sonja
Hello, is there any update on the Auth0 actions?