I set up a new database in my Google Firebase account. The Rules for the database in my Google Firebase portal look like this:
Your security rules are defined as public, so anyone can steal, modify, or delete data in your database
service cloud.firestore {
match /databases/{database}/documents {
match /{document=**} {
allow read, write;
}
}
}
However, when I attempt to connect from my Angular 6 app I'm getting the following error in my Console:
@firebase/database: FIREBASE WARNING: set at /Users failed: permission_denied Unhandled Promise rejection: PERMISSION_DENIED: Permission denied
Any idea what the issue might be? When I googled the error message, it seems like all the suggested resolutions said to configure the database security rules as shown in my code above.