Hi, I’m trying to login with google sign in react native app with using my own UI, and i’m able to successfully configured everthing when i’m sending id_token to exchangeNativeSocial funtion giving me error : Feature is disabled fo this tenant
here is my code where exchanging token :
const { idToken } = await GoogleSignin.signIn();
const credentials = await authClient.auth.exchangeNativeSocial({
subjectToken: idToken,
subjectTokenType: 'urn:ietf:params:oauth:token-type:access_token',
audience: 'http://localhost:8001',
scope: 'openid profile email',
});