itfoxtec-identity-saml2 中的 ValidateRelyingParty 方法从哪里派生?
Where does the method ValidateRelyingParty derive from in itfoxtec-identity-saml2?
在实施 ITfoxtec.Identity.Saml2 库时,我不确定如何在 https://github.com/ITfoxtec/ITfoxtec.Identity.Saml2/blob/master/test/TestIdPCore/Controllers/AuthController.cs#L35
处找到 ValidateRelyingParty() 的方法定义
任何方向将不胜感激。
该示例展示了 SAML 2.0 身份提供者 (IdP) 如何确保调用依赖方是可信的。 ValidateRelyingParty 方法在 https://github.com/ITfoxtec/ITfoxtec.Identity.Saml2/blob/master/test/TestIdPCore/Controllers/AuthController.cs#L134
中实现
ValidateRelyingParty 方法实例化受信任的依赖方列表,return 调用依赖方或失败。
身份提供者 (IdP) 应验证是否允许依赖方 login/logout 并且最重要的是仅响应受信任的依赖方 url。
在实施 ITfoxtec.Identity.Saml2 库时,我不确定如何在 https://github.com/ITfoxtec/ITfoxtec.Identity.Saml2/blob/master/test/TestIdPCore/Controllers/AuthController.cs#L35
处找到 ValidateRelyingParty() 的方法定义任何方向将不胜感激。
该示例展示了 SAML 2.0 身份提供者 (IdP) 如何确保调用依赖方是可信的。 ValidateRelyingParty 方法在 https://github.com/ITfoxtec/ITfoxtec.Identity.Saml2/blob/master/test/TestIdPCore/Controllers/AuthController.cs#L134
中实现ValidateRelyingParty 方法实例化受信任的依赖方列表,return 调用依赖方或失败。
身份提供者 (IdP) 应验证是否允许依赖方 login/logout 并且最重要的是仅响应受信任的依赖方 url。