Access scope data after Firebase authentication
问题 I authorized the calendar api in my google sign in auth, using the following code (Angularfire2): let auth = new firebase.auth.GoogleAuthProvider(); auth.addScope('https://www.googleapis.com/auth/calendar'); this.afAuth.auth .signInWithPopup(auth).then((data) => { console.log(data); // nothing about calendar here }); Is there any way to access authorized scopes using FirebaseAuth? For example, access the calendar data after the user signs and authorizes the calendar auth. 回答1: If you check