Accessing a deeplink in case of SSO

0
Hi, I have implemented a deeplink that sends application url via mail. When user clicks on the link, he is forced to login however Single sign on is implemented in the application. Once logged in, it is redirecting to the correct page, but how can we prevent login and redirect directly through SSO
asked
5 answers
1

Hi Snuhi, 

 

In deep link configuration, there is a checkbox available where we can restrict the user to view the login page. 

 

Checkbox is available in advanced tab of configuration page. 

the label of the check box do not force the login

answered
1

To prevent direct login and redirection via SSO when using deeplink, you can implement an authorization check mechanism before redirection. When opening deeplink, first check if the user is authorized in your application. If yes, then you can continue redirecting to the desired page. Otherwise, prompt the user to authorize or sign in to the application, and then redirect via SSO.

answered
0

Hey Snuhi,

 

Please refer this article for troubleshooting -

https://docs.mendix.com/appstore/modules/deep-link/#deep-link-redirect-fails

 

Thanks & Regards,

Naman Khard

answered
0

Hi Snuhi have you solve this issue?

answered
0

Hello Snuhi Karmakar,

I implemented deeplink in version 10 using microflow page url parameter. I face one issue if user is connected in application via SSO, this deeplink was working fine and was landing in desired page.

If user has not logged in application and trying to access the deep link url it was redirecting to home page.

I added    SSO/login?cont=  this in final url and my issue fixed.

https://abc-accp.mx.lowcode.test.cloud/p/AccessRequest/258 

https://abc-accp.mx.lowcode.test.cloud/SSO/login?cont=p/AccessRequest/259 

 

image.png

 

https://docs.mendix.com/appstore/modules/saml/

 

answered