I am actually having some issues. I made an app and enabled SAML using AWS. It gives me a Identity Provider Login URL:
https://nazimashraf.auth0.com/samlp/LrF4gGPuUkb7BV4Pg9zMrpW9loHmKxvh
If I login via this, everything works fine and I am granted access to AWS services.
The issue is that I am logging in my portal using Auth0 but need amazon services using SAML. For the portal, I have the following configuration file:
const Auth0Config = {
domain: ‘nazimashraf.auth0.com’,
clientID: ‘LrF4gGPuUkb7BV4Pg9zMrpW9loHmKxvh’,
allowedConnections: [‘Username-Password-Authentication’],
rememberLastLogin: true,
language: ‘en’,
closable: true,
options: {
auth: {
autoParseHash: true,
redirect: true,
redirectUrl: window.location.href + ‘auth0loginCallback’
},
languageDictionary: {
title: ‘Auto Labs.’,
emailInputPlaceholder: ‘demo@gmail.com’,
passwordInputPlaceholder: ‘demodemo’
},
}
};
The client id is of the app which has SAML integrated.
But then I do not have access to AWS services.
Why is this happening?
Regards.