Hello Group,
My dev has run into Firebase Phone Auth error:
I use this plugin to Phone auth https://ionicframework.com/docs/native/firebase-authentication. So how can I transfer that Auth details to the AngulraFireAuth?
Original
I have a Firebase Storage bucket permission like so:
service firebase.storage {
match /b/{bucket}/o {
match /{allPaths=**} {
allow read, write:if request.auth != null;
}
}
}
Client-side code: i.e. upload an image
console.log('user', await this.afAuth.currentUser); //null
const filePath: string = `signatures/${user.uid}`;
const afUploadTask: AngularFireUploadTask = afStorageReference.putString(imageDataUrl, 'data_url');
But it fails:
vendor.js:44100 ERROR Error: Uncaught (in promise): FirebaseStorageError: {“code_”:“storage/unauthorized”,“message_”:“Firebase Storage: User does not have permission to access ‘signatures/gx3TlaSFQoPhQXCnjk3QCrq2j9x1’.”,“serverResponse_”:"{\n “error”: {\n “code”: 403,\n “message”: “Permission denied. Could not perform this operation”\n }\n}",“name_”:“FirebaseError”}
So how can I configure this kind of rule with Storage? Without any rule above code is working fine.
Here is the link to the above:
Any help would be much appreciated
1 post - 1 participant