No uri registered to handle redirect or multiple applications registered

Did you have a chance to look at this Github issue: No uri registered to handle redirect or multiple applications registered · Issue #100 · okta/okta-oidc-android · GitHub

In your org settings you can remove “https://” from the URIs
then setup config:

config = OIDCConfig.Builder()
.clientId(“id here”)
.redirectUri(“domain.okta.com/login/callback”)
.endSessionRedirectUri(“domain.okta.com/login/callback”)
.scopes(“openid”, “profile”, “offline_access”)
.discoveryUri(“https://domain.okta.com”)
.create()

and

android.defaultConfig.manifestPlaceholders = [
“appAuthRedirectScheme”: “domain.okta.com”
]
1 Like