Below code is provided at realm docs.
GoogleSignin.configure({
webClientId: clientId,
offlineAccess: true,
});
async function getGoogleAuthCode() {
try {
await GoogleSignin.hasPlayServices();
const {serverAuthCode} = await GoogleSignin.signIn();
return serverAuthCode;
}
catch (error) {}
Above code always returns 10 - DEVELOPER_ERROR,
Cross checked the client id. Since mongodb realm suggests to use web application type google oAuth. App's SHA is not registered at google end.
Google sign in is broken in the current beta.
References: