I'm using firebase login based on Facebook Credentials, and I'm unable to call Facebook SDK methods.
The problem appears when returning user open the app, I'm checking if a user is logged in with
FirebaseUser user = FirebaseAuth.getInstance().getCurrentUser();
if the user is not null he is logged in and enter the app.
Next thing I'm trying to call Facebook Graph Request using
AccessToken token = AccessToken.getCurrentAccessToken();
but token return as null.
What is missing? is there a function that needs to be called after Firebase login so the Facebook SDK will be initialized with the right access token?