简体   繁体   English

丰富ASP.Net承载令牌格式

[英]Enrich ASP.Net bearer token format

I have setup an ASP.NET WebApi project with support of bearer token like this: 我已经设置了一个支持承载令牌的ASP.NET WebApi项目,如下所示:

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

var oAuthBearerOptions = new OAuthBearerAuthenticationOptions();

app.UseOAuthAuthorizationServer(oAuthServerOptions);
app.UseOAuthBearerAuthentication(oAuthBearerOptions);

When I make a request to the token endpoint I have this answer 当我向令牌端点发出请求时,我有这个答案

{
    "access_token":"GST9UwSuesiYhkezr94K4xwuzvNQ",
    "token_type":"bearer",
    "expires_in":86399
}

Is there any way to enrich the token with additional fields like this? 有没有办法用这样的附加字段来丰富令牌?

{
    "access_token":"GST9UwSuesiYhkezr94K4xwuzvNQ",
    "token_type":"bearer",
    "expires_in":86399,
    "username":"user@mail.com"
}

Well here is the solution: 那么这是解决方案:

In your class that inherits from OAuthAuthorizationServerProvider 在您的类中继承自OAuthAuthorizationServerProvider

public override async Task TokenEndpoint(OAuthTokenEndpointContext context)
{
    context.AdditionalResponseParameters.Add("username", "user@mail.com");

    return Task.FromResult<object>(null);
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM