How to use Page URLs with parameters or Microflow URLs with parameters in combination with SSO?
4
Excited to read about the deprecation of Deeplink and the replacement of it via URL's you can manage in Studio Pro for Pages and URL's, including parameters, I would like to understand the recommended way to make them work with SSO/SAML. From I app I just want to provide URL's to directly access a page or microflow from our company's intranet set and have the users SSO authenticate and then direct them to the url. See https://marketplace.mendix.com/link/component/43 and https://docs.mendix.com/appstore/modules/deep-link/#migrate-page-micro Who can share any best practices? Thanks in advance!
If single IdP configured, URL will be the base URL of your application followed by SSO/login?cont={page/Microflowurl}
For example, http://localhost:8080/SSO/login?cont=link/pagepath
If Multiple IdPs configured, you can specify which IdP should be used by adding the alias (MyIdPAlias) SSO/login?_idp_id={MyIdPAlias}&cont={page/Microflowurl}
For example, http://localhost:8080/SSO/login?_idp_id=Okta&cont=link/pagepath
answered
Sebastian Faßmann
0
Not sure if this is helpful, but I recently used the OIDC module for authentication, and it uses a REST service to invoke the Callback Microflow. You could potentially use the same method.