Jim*_*Jim 8 javascript firebase react-native firebase-storage react-native-firebase
我试图在使用 react-native-firebase 的 react-native 应用程序中的一次调用中执行各种 firebase 操作。流程是这样的:
在图像存储阶段,该imgRef.putFile()函数错误地指出用户未被授权。但是我正在使用createUserWithEmailAndPassword()(在完成时对用户进行身份验证),然后使用返回的凭据来完成其余的工作、图像存储和 Firestore 创建。
firebase 存储规则设置为仅允许经过身份验证的用户。这是规则集:
rules_version = '2';
service firebase.storage {
match /b/{bucket}/o {
match /{allPaths=**} {
allow read, write: if request.auth != null;
}
}
}
Run Code Online (Sandbox Code Playgroud)
另外,我在身份验证方法中启用了匿名登录。
这是直到错误点的初始操作:
return (dispatch) => {
dispatch({ type: types.REGISTER_USER });
console.log('starting registration process...');
firebase
.firestore()
.collection('users')
.where('username', '==', username)
.get()
.then((querySnapshot) => {
console.log(querySnapshot);
if (querySnapshot.empty !== true) {
registrationFail(dispatch, 'Username already taken. Try again.');
console.log("Registrant's username already exists");
} else {
console.log('Registrants username is unique');
firebase
.auth()
.createUserWithEmailAndPassword(email, pass)
.then((userCredential) => {
uploadImg(dispatch, img, userCredential.user.uid)
Run Code Online (Sandbox Code Playgroud)
这是 uploadImg() 函数:
const uploadImg = async (dispatch, uri, uid) => {
console.log('Starting image upload...');
dispatch({ type: types.UPLOAD_IMG, info: 'Uploading profile image...' });
const uploadUri = Platform.OS === 'ios' ? uri.replace('file://', '') : uri;
const imgRef = firebase.storage().ref('profile-images').child(uid);
return imgRef
.putFile(uploadUri, { contentType: 'image/png' })
.then((success) => {
console.log('profile image upload successful.')
return imgRef;
})
.catch((err) => {
console.log('profile image upload failed: ' + err)
uploadImgFail(dispatch, err.message);
});
};
Run Code Online (Sandbox Code Playgroud)
再次,登录控制台的错误是:
个人资料图片上传失败:错误:用户无权执行所需的操作。
记录firebase.auth().currentUser权利之前uploading()函数成功返回当前用户对象。
Firestore 也会出现此安全规则问题,尽管我针对给定集合的安全规则集是:
match /databases/{database}/documents {
match /users/{uid} {
// allow new user to check phone numbers
allow read: if true
allow update, create: if request.auth != null
allow delete: if request.auth.uid == uid
}
}
Run Code Online (Sandbox Code Playgroud)
这是我注册流程的一部分。我收集输入,将相关数据发送到 redux 操作,创建一个用户,创建用户后,我将一些数据添加到 firestore 中的文档中。这毫无意义。我参考了文档,但它仍然不起作用。
如何解决这个问题?
这似乎是 firebase 的一个问题,您必须先注销()用户一次,然后才能在创建用户后登录。我遇到了同样的问题,这是我的解决方法:
firebase.auth().signInWithEmailAndPassword(userEmail,userPass).catch((error) => {
/*console.log('Could not log in user');*/
console.log(error);
firebase.auth().createUserWithEmailAndPassword(userEmail,userPass).catch((error) => {
/*console.log('Could not create user');*/
console.log(error);
}).then(result => {
firebase.auth().signOut().then(() => {
firebase.auth().signInWithEmailAndPassword(userEmail,userPass).then(result => {
/*console.log("here is you logged in user");*/
})
});
});
});
});
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
744 次 |
| 最近记录: |