I’m aware that it’s not advised to pass data from the front channel back to Auth0, to the /continue endpoint, via URL (query string) parameters. However, this is what I need, to send something non-sensitive. I don’t want to go to the hassle of creating and signing a JWT to send back, as this article describes.
If I just redirect to:
https://auth/mysite.com/continue?state=<state>&foo=bar
…how can I access foo
in the onContinuePostLogin
action?
Many thanks in advance.