Can i somehow pass through url variables from login/register screen to a form that is prompted in onExecutePostLogin? i look at various posts and can not even get the “ext-*” param resolved. I am using express-open-id like:
app.get('/login', (req, res) =>
res.oidc.login({
returnTo: '/onboarding',
authorizationParams: {
redirect_uri: `${baseUrl}/callback`,
"ext-test": 'test'
},
}),
)
if i add this to my universal login template (/api/v2/branding/templates/universal-login): Value of the ext-test parameter:{{ transaction.params.ext-test }} its not showing up ?!
Is it not possible to pass through a custom parameter to a form prompt?