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