How to Use Firebase Phone Authentication without recaptcha in React Native

前端 未结 1 1969
情深已故
情深已故 2021-01-28 19:03

I want to use firebase phone verification without recaptcha in react native. Below is my code. The code is working properly. But I Don\'t want to use recaptcha. I try deleting i

1条回答
  •  无人及你
    2021-01-28 19:34

    You can't remove captcha verification using default authentication. Use anonymous authentication to avoid captcha letters to appear. https://firebase.google.com/docs/auth/web/anonymous-auth

    But You can also make it invisible like this:

    window.recaptchaVerifier = new firebase.auth.RecaptchaVerifier(
        "recaptcha-container", {
            size: "invisible"
        }
    );
    

    0 讨论(0)
提交回复
热议问题