我有一個MVC應用程序(.Net Framework 4.5),它在過去的三年中一直使用Forms Authentication機制。現在我們想要在Okta的幫助下集成SSO功能。使用KentorIT身份驗證服務,我能夠將Okta與我的mvc應用程序集成。其中,所有配置都在web.config文件中設置(例如:entityId,signOnUrl等)。有沒有辦法編程配置這些sso設置?我發現KentorAuthServicesSection是我們必須實例化來完成此過程的類。目前它從配置文件讀取設置。使用kentor以編程方式配置sso設置
public class KentorAuthServicesSection : ConfigurationSection
{
private static readonly KentorAuthServicesSection current =
(KentorAuthServicesSection)ConfigurationManager.GetSection("kentor.authServices");
}
所以修改此ConfigurationManager.GetSection(「kentor.authServices」)部分有一個自定義實現將做的工作?或者還有其他的好方法嗎?
感謝您的幫助。它工作完美。你可以看看這個問題(http://stackoverflow.com/questions/44005770/identify-okta-account-on-sign-in)與此有關嗎?提前致謝 – Dennis