AuthSession.useAuthRequest response url is always fixed

Please provide the following:

  1. SDK Version: 44.0.0
  2. Platforms(Android/iOS/web/all): Android
  3. Add the appropriate “Tag” based on what Expo library you have a question on.

I tried to have a certain path reflected in my redirectionUri as below but the makeRedirectUri does not seem to respect path field.

const redirectUri = AuthSession.makeRedirectUri({
  path: 'profile',
  useProxy: true
});

no matter what I do, I always have the redirect uri looking like this

exp://172.30.1.31:19000/--/expo-auth-session

I cannot set useProxy to false because the identity providers does not accept scheme format. (e.g. myapp://) for their redirect uri.

Therefore, I have to set useProxy: true and since it does not respect the path I want, the app is showing me “NotFound” screen after getting the token.

Anybody had similar issue?

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