使用OWIN OAuthAuthorization在ASP.NET Web API中使用参数进行路由

时间:2017-07-12 19:54:23

标签: c# asp.net asp.net-web-api owin

我尝试使用像" / api / {culture} / token"这样的路线。我的Web API上的OAuth授权流程,但我没有成功。

 var options = new OAuthAuthorizationServerOptions()
        {
            AllowInsecureHttp = true,
            TokenEndpointPath = new PathString("/api/{culture}/token"),
            AccessTokenExpireTimeSpan = TimeSpan.FromDays(1),
            Provider = new SimpleAuthorizationServerProvider()
        };

我已经看过如何按照here的说明访问查询字符串参数,但最好将此路由称为api / en-US / token而不是api / token /?auth_parameters& culture =的en-US

0 个答案:

没有答案