how to get firebase token with angular, with firebase authentication sdk?
i am trying to create project in angular, i am using firebase sdk to get token. i’m following the documentation and i’m using the "firebase" package: "^9.17.2", I can authenticate, but I can’t extract the token from the response. this is the code i use: `signInWithEmailAndPassword(auth, "email", "pwd") .then((userCredential) => { return userCredential; // Signed… Read More how to get firebase token with angular, with firebase authentication sdk?