I'm trying to implement google sign in in my expo using expo-auth-session, When I click on my gmail to sign in, I'm redirected to this screen saying "Something went wrong when trying to finish signing in. Please close this screen to go back to the app".
//Google auth code: import * as Google from 'expo-auth-session/providers/google'; const [request, response, promptAsync] = Google.useAuthRequest({ expoClientId: config.google.expoClientId, redirectUri: config.google.redirectUri, }); React.useEffect(() => { //Handle google login console.log(response) if (response?.type === 'success') { const { authentication } = response; } }, [response]); //Button that calls the google sign in <Button iconName={'google'} iconPressed={() => promptAsync({useProxy: true})} />
useProxy: falsecorrect?