我使用Firebase關注了React原生登錄教程,我使用create-react-native-app進行簡易開發(我的package.json),我正在使用NodeJS v6.10.1
,我正在使用注4設備(4.4.4),我啓用Email/Password
認證火力地堡控制檯中,由於某種原因,我得到:嘗試登錄時出現React-native,Firebase網絡錯誤
{
code: "auth/network-request-failed",
message: "A network error (such as timeout, interrupted connection or unreachable host) has occurred."
}
我沒有忘記用firebase.initializeApp
和我的代碼是:
firebase.auth().signInWithEmailAndPassword(email, password)
.catch(e0 => {
console.log(e0);
firebase.auth().createUserWithEmailAndPassword(email, password)
.catch(e1 => {
console.log(e1);
this.setState({ error: 'Authentication Failed.' });
});
});
對於我都得到相同的錯誤目的。
現在再試一次..我已經多次看到,你會得到一段時間後消失的隨機網絡錯誤 –
@ChristopherRivera我試過了,不幸的是同樣的錯誤。 –