How to Redirect to the End User Settings or Embed the Page in an IFrame
Last Updated:
Overview
NOTE: This is not compatible with End User Settings Version 2.0.
Applies To
- IFrame embedding
- Redirect
- End-user settings
Cause
If the navigation elements (such as the side-nav and the top menu bar) are not a concern, the https://<subdomain>.okta.com/enduser/settings can be safely used for iFrame or redirect embedding.
If the navigation elements need to be hidden, then admins should use the following URL:
https://<subdomain>.okta.com/enduser/settings?iframe=true&iframeControlHideAll=true
Solution
Depending on the use case and circumstances, it may be necessary to use either an <iframe> or an <a> element in their application page structure:
- If iFrame:
<iframe src="https://<subdomain>.okta.com/enduser/settings?iframe=true&iframeControlHideAll=true" /> - If redirect:
<a href="https://<subdomain>.okta.com/enduser/settings?iframe=true&iframeControlHideAll=true">Link text here</a>
https://<subdomain>.okta.com/enduser/settings URL can be used instead.