带有隐形密码的angularfire2电话认证

时间:2018-08-08 10:25:19

标签: firebase firebase-authentication google-cloud-firestore recaptcha angularfire2

我尝试使用Angularfire2,Angular6和Ionic4Alpha进行电话身份验证。 我可以使用它登录/注册,但是控制台会记录一些错误。

这是我使用隐形Recaptcha的方式:

ngAfterViewInit() {
    let vm = this;
    window.recaptchaVerifier = new firebase.auth.RecaptchaVerifier('sign-in-button', {
      'size': 'invisible',
      'callback': (response) => {
        vm.loginWithPhoneNumber();
      }
    });
  }

使用可见的Recaptcha,一切运行良好,但是现在我收到此错误。 我该怎么解决?

enter image description here

0 个答案:

没有答案