我使用firebase创建react应用程序我使用firebase电话身份验证创建用户帐户,但问题是运行firebase电话身份验证locallay,但是我部署了应用程序firebase,所以我的电话身份验证功能无法正常工作这是代码..
var phoneNumber = th.state.Phone;
var appVerifier = window.recaptchaVerifier;
firebase.auth().signInWithPhoneNumber(phoneNumber, appVerifier)
.then(function (confirmationResult) {
window.confirmationResult = confirmationResult;
// conform = confirmationResult;
console.log('result', confirmationResult);
})
.then(() => {
th.setState({ status: 'hide', modalOpen: true })
}).catch(function (error) {
// Error; SMS not sent
th.setState({ status: 'hide' })
console.log('err',error);
// ...
})
componentDidMount() {
window.recaptchaVerifier = new firebase.auth.RecaptchaVerifier('sign-in', {
'size': 'invisible',
'callback': function (response) {
// reCAPTCHA solved, allow signInWithPhoneNumber.
// this.onSignInSubmit();
console.log('res', response)
}
});
// window.recaptchaVerifier.render().then(function (widgetId) {
// window.recaptchaWidgetId = widgetId;
// });
}
答案 0 :(得分:0)
问题是Firebase找不到otp,因为我部署了另一个Firebase项目来响应应用程序,因此,如果您使用的是Firebase otp,则在同一项目上进行部署