Description
Hi, our organization's Access Management team has an Okta login page that uses a session cookie redirect link to set a cookie with some custom styles before launching the OIDC workflow. Is there a way to handle this with the iOS library?
https://developer.okta.com/docs/guides/session-cookie/overview/#retrieving-a-session-cookie-by-visiting-a-session-redirect-link
Our flow
<domain>/setLoginContext?uxmode={"signuplink":{"hidden":true}}&redirect_uri=<requestURL>
our setLoginContext
parses the uxmode param and sets the cookie, then redirects to the okta requestURL
built with the clientId, clientSecret, scope, nonce, codeChallenge, etc.
Our mobile development team was looking to create an extension to the library, but wanted to check if there was anything that supports this workflow first, though I didn't see anything in the documentation.