Replies: 2 comments 12 replies
-
Hey @exhaledev Can you share the name of the verifier? Also, what are you passing in clientId of connectTo? |
Beta Was this translation helpful? Give feedback.
10 replies
-
When creating a Verifier with Auth0 for import { WALLET_ADAPTERS, CHAIN_NAMESPACES } from "@web3auth/base";
await web3auth.connectTo(WALLET_ADAPTERS.OPENLOGIN, {
loginProvider: "jwt",
extraLoginOptions: {
domain: "https://YOUR-AUTH0-DOMAIN", // Please append "https://" before your domain
verifierIdField: "name",
},
}); |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi All,
I am trying to integrate web3auth with auth0
In Auth Dashboard I have added https://beta.openlogin.com/auth as the allowed callback url
but i keep getting this error, while im trying to login
My package.json is as follows
"@alch/alchemy-web3": "^1.4.2",
"@web3auth/torus-wallet-connector-plugin": "^1.0.0",
"@web3auth/base": "^3.0.0",
"@web3auth/modal": "^3.0.3",
"@web3auth/openlogin-adapter": "^3.0.3",
"web3": "^1.7.0",
"axios": "^1.1.3",
"ethers": "^5.0.0",
"faunadb": "^4.4.1",
"next": "^12.1.6",
"next-auth": "^4.14.0",
"nextjs-progressbar": "^0.0.14",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-progressbar-line": "^1.0.2",
"sweetalert2": "^11.4.8",
"wagmi": "^0.6.0"
And my web3auth login button looks as follows
Beta Was this translation helpful? Give feedback.
All reactions