【问题标题】:Flutter FireAuth remove reCAPTCHA banner (WEB)Flutter FireAuth 移除 reCAPTCHA 横幅(WEB)
【发布时间】:2021-12-12 05:59:04
【问题描述】:

我正在创建一个 Flutter Web 应用,并且我正在使用 firebase auth 对具有电话号码的用户进行身份验证。

await _auth.signInWithPhoneNumber(phoneNumber);

执行此命令后,页面右下角会出现一个 reCAPTCHA 横幅。完成 reCAPTCHA 测试后,横幅不会脱落。即使在确认短信之后:

await confirmationResult!.confirm(smsCode);

我怎样才能完全删除这个横幅?

【问题讨论】:

    标签: flutter firebase-authentication flutter-layout


    【解决方案1】:

    显然很容易:

    final el = window.document.getElementById('__ff-recaptcha-container');
    if (el != null) {
        el.style.visibility = 'hidden';
    }
    

    【讨论】:

      猜你喜欢
      • 2020-12-22
      • 1970-01-01
      • 2018-07-31
      • 2022-01-10
      • 1970-01-01
      • 2021-03-17
      • 2017-08-18
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多