Facebook authentication not working in android at all

I am working on expo version 37/39. I have done necessary to configure facebook authentication. It is working properly on iOS device but it is not working on android devices at all nothing happens. I am using below code.

await Facebook.initializeAsync();
const {
type,
token,
expires,
permissions,
declinedPermissions,
} = await Facebook.logInWithReadPermissionsAsync({
permissions: [‘public_profile’],
});
if (type === ‘success’) {
const response = await fetch(https://graph.facebook.com/me?access_token=${token});
}
} catch ({ message }) {

}

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.