We are currently developing a SPA in React with Auth0 Lock v10.19 and experienceing the following issue when using the implicit grant flow with an API:
Despite setting “Allow skipping Consent” to true as well as not having localhost in the callback URLS and our client being listed as first party in the Auth0 management API
the Auth0 Consent Page always pops up! (tried it also with both actived and deactivated OICD-conformant settings ).
Here are our Lock Settings:
lockOptions = {
languageDictionary: {
title: "MidnightDeal"
},
theme: {
logo: 'img/icon.jpg',
primaryColor: '#000000'
},
oidcConformant: true,
autoclose: true,
auth: {
params: {
audience: 'https://midnightdeal.at',
scope: 'openid read:midnightdeal',
}
and the jwt that we get returned:
{
"iss": "https://midnightdeal.eu.auth0.com/",
"sub": "facebook|10207297312865215",
"aud":
"https://midnightdeal.at",
"https://midnightdeal.eu.auth0.com/userinfo"
],
"azp": "rR2MRm8YubY4kpQIThlvXHAG3RjoFTAK",
"exp": 1501818635,
"iat": 1501811435,
"scope": "openid read:midnightdeal"
}