1

我開發了cordova mobile app。我們發送otp到電話號碼。所以我們使用firebase插件發送otp,並通過這個指導fcm plugincordova Uncaught TypeError:無法讀取undefined的屬性'verifyPhoneNumber'

我安裝這個插件

科爾多瓦插件添加[email protected] --save

我有這樣的錯誤

遺漏的類型錯誤:無法讀取屬性 'verifyPhoneNumber' 的未定義

window.FirebasePlugin.verifyPhoneNumber("+91*********", timeOutDuration, function(credential) { 
     console.log(credential); 

      console.log('successfully login with phone no'); 
        alert('successfully login') 
    }, function(error) { 
     console.error(error); 
     alert(error) 
    }); 

回答

相關問題