正在重写AspNet.Security.OpenIdConnect.Server中的TokenEndPoint
本文关键字:Server 中的 TokenEndPoint OpenIdConnect Security 重写 AspNet | 更新日期: 2023-09-27 18:25:36
此处与本文相关的问题:配置授权服务器端点。
使用上面的例子,我可以获得代币。以前,通过飞越可以获得额外的信息
public override Task TokenEndpoint(OAuthTokenEndpointContext context)
{
foreach (KeyValuePair<string, string> property in context.Properties.Dictionary)
{
context.AdditionalResponseParameters.Add(property.Key, property.Value);
}
return Task.FromResult<object>(null);
}
在目前的实施中,你是如何做到这一点的
public override Task TokenEndpoint(TokenEndpointContext context){
}
谢谢!
您的最佳选择是直接使用ApplyTokenResponse
事件来更新返回到客户端应用程序的JSON负载。与AdditionalResponseParameters
不同,它允许您添加或删除几乎任何东西:对象、数组、字符串、整数。。。
以下是如何做到这一点:
public override Task ApplyTokenResponse(ApplyTokenResponseContext context)
{
// Only add the custom parameters if the response is not a token error response.
if (string.IsNullOrEmpty(context.Error))
{
context.Response["custom-property-1"] = "custom-value";
context.Response["custom-property-2"] = JArray.FromObject(new[]
{
"custom-value-1",
"custom-value-2"
});
}
return Task.FromResult(0);
}