Hi, we are trying to pass arbitrary values to Universal Login to fill a referral field and thus allow users to share referral links to our site.
The only param that fits the bill is “mode”, but we feel is a bit hacky to use that field for other purpose.
this.auth0.authorize({
appState: someParams, //ignored
language: language,
initialScreen: ‘signUp’,
translations: translations,
rememberLastLogin: true,
})
I’ve been looking to older posts and people talk about appState field, but we find that is ignored in UniversalLogin Login hosted page.
Are we missing something?
Thanks