4

I am using phone authentication on Flutter Web like this:

  signInWithPhoneNumber(String phone) async {
    try {
      confirmationResult = await _auth.signInWithPhoneNumber(phone);
    } catch (e) {
      return onAuthenticationError();
    }
  }

Now everything is fine, It's working but in the start, I get the reCAPTCHA in the bottom right of the page and it's persistent, not even going after solving reCAPTCHA. How do I get rid of it after authentication?

enter image description here

Christopher Moore
  • 15,626
  • 10
  • 42
  • 52
Shahzad Akram
  • 4,586
  • 6
  • 32
  • 65
  • I don't know who closed this question but definitely, he did it without reading it. – Shahzad Akram Apr 09 '21 at 15:49
  • I can vote to reopen it. The one who closed it definitely knows about firebase-authentication. :) If you are sure the issue marked as duplicate doesn't solve your problem, then let me know. – Abhilash Chandran Apr 10 '21 at 17:31
  • Yeah definitely that's another question. I haven't any issue with `reCAPTCHA` verification, I just want it to be removed after the verification as it's persistent in bottom corner even after the verification. – Shahzad Akram Apr 10 '21 at 18:20
  • a whole year and this issue still exists – Hussain Jul 14 '22 at 22:09
  • Take a look at this [post](https://stackoverflow.com/questions/69730262/flutter-fireauth-remove-recaptcha-banner-web). Looks like it solves the above issue: – Martin Reindl Nov 29 '22 at 00:29

0 Answers0