Angular and Firestore: FirebaseError: Missing or insufficient permissions. How add idToken while observing a specific document
问题 I code the code bellow that is notified in real time manner. I mean it keeps observing and soon any collection fields are updated it is loaded in Angular page. app.component.ts import { Component } from '@angular/core'; import { Observable } from 'rxjs'; import { AngularFirestore } from '@angular/fire/firestore'; @Component({ selector: 'app-root', templateUrl: './app.component.html' }) export class AppComponent { public transfers: Observable<any[]>; constructor(db: AngularFirestore) { this