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
const connecter = await web3Auth.connectTo( WALLET_ADAPTERS.OPENLOGIN, { loginProvider: "jwt", extraLoginOptions: { id_token: jwtToken, domain: "https://xxxxx.amazoncognito.com/", verifierIdField: "email", redirect_uri: window.location.href, }, } );
Originally posted by: yusakapon
Check the discussion at: https://github.com/orgs/Web3Auth/discussions/383