Replies: 1 comment 4 replies
-
Hey, redirect_uri will work only in implicit oauth flow (when you won't be passing id token your self, this redirect_url means to specify redirect from oauth provider to your app), it will have no effects when you are passing jwt token your self. You can specify redirect_url (for redirect from openlogin to your app) in OpenloginAdapter constructor loginSettings params to redirect to your app's route after openlogin's 2fa. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am implementing this using custom authentication.
The connection with web3auth is completely successful, but any redirects I specify after authentication are ignored.
(To be precise, I am redirected to the page where web3auth is initialized.)
Is there a wrong way to specify this? Or is it impossible to specify a redirect destination for custom authentication?
I have checked this document
https://web3auth.io/docs/sdk/web/openlogin#connectto
Beta Was this translation helpful? Give feedback.
All reactions