I'm currently developing an Angular2 App which uses Firebase as Usersystem with the following provider: Email + Password, Facebook, Google
The Problem is when i login with Facebook i can't change the Facebook account anymore. When i logout and click on 'Login with Facebook' again automatically the user from before is used.
By the GoogleAuthProvider i can manage the account change as following
const googleAuthProvider = new firebase.auth.GoogleAuthProvider();
googleAuthProvider.setCustomParameters({prompt: 'select_account'});
But i can't do the same by Facebook since the Api is different and i can't find a similar option in the docs.
Has someone encountered the same problem?