Tkey with custom auth (firebase auth email/password)

Hi! I’m trying to initialize tKey with a tokenId received from a firebase auth email/password login.
Is there a piece of code to do that ?
I have tried

const loginResponse = await (tKey.serviceProvider as any).triggerLogin({
   q463s7kpvja16l4l0kko3nb925ikds2p.apps.googleusercontent.com',
        typeOfLogin: "jwt",
        verifier: "testing",
        clientId:
          "BLIBco23fFMfi4ximTa1wY3da_CTpC0hGuxoCXiFc1hNL9hqQLDGKMKNm275z6z5KPJdd1-UWOtupp5D0AmlwKI",
        jwtParams: {
          domain: window.location.origin,
          id_token: token, // this is from login pop of the firebase account and is working fine
          client_id:
            "BLIBco23fFMfi4ximTa1wY3da_CTpC0hGuxoCXiFc1hNL9hqQLDGKMKNm275z6z5KPJdd1-UWOtupp5D0AmlwKI",
          verifierIdField: "sub",
        },
      });

This is the error I’m receiving:
rror: Error occurred while verifying params verifier testing not found for account id: 5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY

Hey @juan

What’s the name of your verifier, and on which web3auth network? Also, looks like you haven’t created a verifier for this. Please refer to the Firebase guide’s create verifier to create one for you. Using Firebase with Web3Auth | Web3Auth