Okta Web Authorization with callback redirect

Please provide the following:

  1. SDK Version: 45
  2. Platforms(Android/iOS/web/all): All

We could do with some assistance in building out our Auth setup with Okta. We use the proxy options for internal builds and for builds to the app store currently, which causes logins to have the ‘Expo.io auth’ pop-up permission. To remove that, we switched the proxy option off and went with the native option:

makeOktaRedirectUri() {
return makeRedirectUri({
// See: AuthSession - Expo Documentation
//
native: com.okta.${this.OKTA_DOMAIN}:/callback,
useProxy: false,
});
}

However, once we have done the build, we are still getting the Okta Popup.

Is there another way we should be approaching this so users can log into the app with the Okta browser auth, but not get that pop-up warning?

Thans,
James

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