ASP.NET MVC how to use pingfederate (OpenTokenAdapter) for SP Initiated SSO?

The intention to ask this question is how to integrate ping into an ASP.NET MVC application, that is, a service provider? We have two idps (Identity Providers), and we need to implement an SSO-initiated service provider.

Let me know that more details are required.

+4
source share
1 answer

Start with the PingFederate.NET Integration Kit User Guide -

https://documentation.pingidentity.com/display/NETIK251/Processing+Overview

For the SP-Init SSO, your application will be redirected to your (SP) PingFederate Server, which generates AuthnRequest for IDP. IDP authenticates the user and sends the response back to your PF (SP). Your SP checks the message and displays the user information in the SP OpenToken Adapter. Then the OTK adapter will generate OTK and send it through the browser to your application for verification / use using our .NET API for OpenToken.

Alternatively, you can check out the PingOne Application Provider Services (APS), which is the Ping OnDemand solution. There is no software installed and no RESTful API to integrate your .NET application. However, I'm not sure if your application connects to 2 different client IDPs or to two internal internal IDPs.

NTN, Yang

+5
source

Source: https://habr.com/ru/post/1444335/


All Articles