0Auth. Unable to detect login share from the Auth Network

Module: “@web3auth/openlogin-adapter”: “^6.1.3”,
I use a custom auth



. When I try to log in, I get an error even though I have my VPN turned off and also a stable internet connection, then why am I getting this error?

@dev.amsets Thanks for reaching out.

Which network are you on Mainnet, Testnet, Cyan?

Network: Testnet
Type: Aggregate
@vjgee

The error indicates the inability to verify your JWT token. Please refer to the below troubleshooting guide:

Have you specified the additional parameters for Auth0:

const web3authProvider = await web3auth.connectTo(WALLET_ADAPTERS.OPENLOGIN, {
  loginProvider: "jwt",
  extraLoginOptions: {
    verifierIdField: "sub", // same as your JWT Verifier ID
    domain: "https://YOUR-APPLICATION-DOMAIN", // your Auth0 domain
  },
});