Web3Auth will continue? Can I modify provider?

Hello, thanks for your attention.

First of all, I’ve seen that in the new documentation there is no section for Web3Auth authentication with moralis. Are you planning to continue giving support for this tool?

My second question is related to connecting my app to a diferent provider. I have own credentials to connect with google or facebook with my configuration but it doesn’t work if I send

await authenticate({
provider: MyOwnProvider,
clientId: “ABC*****************”,

It’s possible to do something like that ? I didn’t find any problem similar in this forum.
Thank you for your time.

Sebastian

function App() {
const { authenticate, isAuthenticated } = useMoralis();
const login = async () => {
if (!isAuthenticated) {
await authenticate({
provider: “web3Auth”,
clientId: “ABC*****************”,
})
.then(function (user) {
console.log(user!.get(“ethAddress”));
})

You can check here on how to post code in the forum

You can use Web3Auth with Moralis 2.0.
The available providers are metamask, wallet connect, magic link and web3auth. To use a custom connector, you can look into this https://v1docs.moralis.io/moralis-dapp/users/web3-login/custom-auth-any-eip1193-provider

There will be a tutorial added in the future on how to use web3auth too