我使用此cordova插件:
https://github.com/arnesson/cordova-plugin-firebase
我用这个插件上载我的GoogleService-Info.plist文件,配置我的firebase项目,然后将.p8 APNS密钥上载到firebase项目。
但是当我使用时:
window.FirebasePlugin.verifyPhoneNumber(phoneNumber, timeOutDuration, function (credential) {
alert('credential: ' + credential);
alert('cr code: ' + credential.code);
}, function (error) {
alert('error: ' + error)
alert('error: ' + JSON.stringify(error));
});
也不成功回调,也不调用失败回调。
我也尝试使用此分叉:https://github.com/silverio/cordova-plugin-firebase
但无济于事