I am trying to setup a new web3auth project, but for some reason I am getting this error when creating a new account for a user via firebase custom auth and passing token to web3auth login:
Could not get result from torus nodes Error occurred while verifying paramsaud validation failed, token values [firebase-project-id] dont include validation value firebase-project-id
I have setup a project before, but now when I do it again I run into this error :/
my setup is something like this:
const WEB3AUTH_CLIENT_ID = ‘BDBkjySwcSOosUcI7mAhUjFdOn5LqZPDTcxWlT0hXTlL5WD6GhsZz-gCnlwAwSNgdIiOzPduPiWwXiEGZZmw_74’
const adapter = new OpenloginAdapter({
adapterSettings: {
network: ‘testnet’,
clientId: WEB3AUTH_CLIENT_ID,
uxMode: “redirect”,
loginConfig: {
jwt: {
name: ‘LiveThree’,
verifier: ‘LiveThree’,
typeOfLogin: “jwt”,
clientId: WEB3AUTH_CLIENT_ID,
},
},
}
});
const localProvider = await web3AuthInstance.connectTo(WALLET_ADAPTERS.OPENLOGIN, {
relogin: true,
loginProvider: ‘jwt’,
mfaLevel: ‘none’,
extraLoginOptions: {
id_token: jwtToken,
domain: window.location.origin,
verifierIdField: “sub”,
}
});
Originally posted by: junhuang-ho
Check the discussion at: https://github.com/orgs/Web3Auth/discussions/365