AuthSession new window not redirecting on Web

Hi,
We are using AuthSession.startAsync to initiate an authentication process in our app, which is working fine on iOS and Android. However when we run it the web browser, instead of redirecting to the correct Auth0 sign in page, our sign in process is just opening another window of the app.

Code that’s causing the problem:

const { url: authUrl, codeVerifier } = await buildAuthUrl();
    const result = await AuthSession.startAsync({
      authUrl,
      returnUrl: Platform.OS === 'web' ? getRedirectUri() : undefined,
    });

Right now the authUrl is the correct url we need going to auth0, however it doesn’t open this url the way it does on mobile for signing in. Has anyone ran into this AuthSession issue before on an Expo web app?

Thanks in advance!

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