2014-05-21 114 views
1

我使用OWIN OAuth 2.0 Authorization Server sample作爲使用我們公司Active Directory創建自己的OAuth服務提供商的寺廟。OWIN OAuth 2.0授權服務器 - 路徑名稱空間

「下載示例代碼」不能正常工作,並在下面的代碼片段

// Enable the Application Sign In Cookie. 
app.UseCookieAuthentication(new CookieAuthenticationOptions 
{ 
    AuthenticationType = "Application", 
    AuthenticationMode = AuthenticationMode.Passive, 
    LoginPath = new PathString(Paths.LoginPath), 
    LogoutPath = new PathString(Paths.LogoutPath), 
}); 

請問Paths屬於哪個命名空間我找不到Paths對象?

回答

2

我能找到工作的代碼示例herePaths對象是在AuthorizationServer MVC項目的自定義對象

public class Paths 
{ 
    public static string AuthorizePath { get; set; } 
    public static string LoginPath { get; set; } 
    public static string LogoutPath { get; set; } 
    public static string TokenPath { get; set; } 
}