Aggregate Verifier with Auth0 for Github NoModal

Can or How to add two github login for auth0 login provider for custom-authentification. I want to add into OpenloginAdapter

 loginConfig: {
auth0github: {
                verifier: "ANKIT1", // Pass the Verifier name here. eg. w3a-agg-example
                verifierSubIdentifier: "auth0-github", // Pass the Sub-Verifier here. eg w3a-a0-github
                typeOfLogin: "jwt", // Pass the type of login provider. For Auth0, it's jwt and not Auth0.
                clientId: "PASS THE ID HERE", // Pass the Auth0 `Client ID` here.
              },
 secondauth0github: {
                verifier: "ANKIT1", // Pass the Verifier name here. eg. w3a-agg-example
                verifierSubIdentifier: "auth0-github", // Pass the Sub-Verifier here. eg w3a-a0-github
                typeOfLogin: "jwt", // Pass the type of login provider. For Auth0, it's jwt and not Auth0.
                clientId: "PASS THE 2nd ID HERE", // Pass the Auth0 `Client ID` here.
              },
}

With secondauth0github or same name will not work. How to add two github ?

Hi @aagarwal.agarwal800

I hope you are doing great. Please let me share your question with our team and get back to you.

Thank You I have resolved the issue now.

loginConfig: {
auth0github: {
verifier: “ANKIT1”, // Pass the Verifier name here. eg. w3a-agg-example
verifierSubIdentifier: “auth0-github”, // Pass the Sub-Verifier here. eg w3a-a0-github
typeOfLogin: “jwt”, // Pass the type of login provider. For Auth0, it’s jwt and not Auth0.
clientId: “PASS THE ID HERE”, // Pass the Auth0 Client ID here.
},
secondauth0github: {
verifier: “ANKIT1”, // Pass the Verifier name here. eg. w3a-agg-example
verifierSubIdentifier: “auth0-github2”, // Pass the Sub-Verifier here. eg w3a-a0-github
typeOfLogin: “jwt”, // Pass the type of login provider. For Auth0, it’s jwt and not Auth0.
clientId: “PASS THE 2nd ID HERE”, // Pass the Auth0 Client ID here.
},
}

and need to pass the loginProvider where you login both the Github

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.