React Native firebase.auth.RecaptchaVerifier

时间:2018-01-30 06:51:38

标签: firebase react-native firebase-authentication

如何使用firebase web方法设置firebase.auth.RecaptchaVerifier本地响应以验证电话号码并通过在设备上接收OTP进行身份验证。使用某些方法但不能在移动设备上工作。

使用Web方法进行本地反应的代码:

var appVerifier = firebase.auth.RecaptchaVerifier;
// window.recaptchaVerifier =
//   new firebase.auth.RecaptchaVerifier('recaptcha-container');

firebase.auth().signInWithPhoneNumber('+919843191338', appVerifier)
    .then(function (confirmationResult) {
        Alert.alert(confirmationResult);
        window.confirmationResult = confirmationResult;
    }).catch(function (error) {
        // Error; SMS not sent
        // ...
    });

0 个答案:

没有答案