我尝试使用像" / 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