Hi I have added firebase authentication system to my android app
Now i need to get Facebook token after successful login , i can get user DisplayName, Email , Phone , but not the token string that i need to store for further actions in my app .
I have tried
if (requestCode == RC_SIGN_IN) {
IdpResponse response = IdpResponse.fromResultIntent(data);
if (resultCode == RESULT_OK) {
FirebaseUser user = FirebaseAuth.getInstance().getCurrentUser();
String fb_token = user.getToken(true).toString();
// ...
}
but it seems that there is no getToken() method
So , how can i get the token as a string
thank you