firestore의 규칙이 false 로 되어있어서 안되어있던 것으로 파악된다.
false
rules_version = '2'; service cloud.firestore { match /databases/{database}/documents { match /{document=**} { allow read, write: if true; } } }
true 로 바꿔준 후에는 잘 작동했다.
true
[Firebase Error 해결법 포함] Missing or insufficient permissions