You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The check for event.url.startsWith(returnUrl)here prevented my OAuth session from successfully completing the redirect on Android. As far as I can tell this was due to the fact that we were passing in the app scheme URL in camel case as a redirect. In other words; "AwseomApp://" !== "awesomeapp://".
The text was updated successfully, but these errors were encountered:
Ariflo
changed the title
Check For event.url.startsWith(returnUrl) prevents successful redirect with openAuth
Mismatching Cases prevents successful redirect with openAuthJul 18, 2023
Ariflo
changed the title
Mismatching Cases prevents successful redirect with openAuth
Mis-matching Letter Case prevents successful redirect with openAuthJul 18, 2023
Ariflo
changed the title
Mis-matching Letter Case prevents successful redirect with openAuth
Mismatching Letter Case Prevents Successful Redirect with openAuthJul 18, 2023
Ariflo
changed the title
Mismatching Letter Case Prevents Successful Redirect with openAuth
Mismatching Letter Case Prevents Successful Redirect with openAuth on Android
Jul 18, 2023
Ariflo
changed the title
Mismatching Letter Case Prevents Successful Redirect with openAuth on Android
Case Sensitive URL Check Prevents Successful Redirect with openAuth on Android
Jul 18, 2023
Issue
The check for
event.url.startsWith(returnUrl)
here prevented my OAuth session from successfully completing the redirect on Android. As far as I can tell this was due to the fact that we were passing in the app scheme URL in camel case as a redirect. In other words; "AwseomApp://" !== "awesomeapp://".Suggested fix
Use .toLowerCase() to do a valid equivalent check here.
The text was updated successfully, but these errors were encountered: