|
|
|
@ -930,6 +930,7 @@ namespace OpenIddict.Server |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Contains the logic responsible of attaching the application-specific claims extracted from the token the event context.
|
|
|
|
/// Note: this handler is not used when the degraded mode is enabled.
|
|
|
|
/// </summary>
|
|
|
|
public class AttachApplicationClaims : IOpenIddictServerHandler<HandleIntrospectionRequestContext> |
|
|
|
{ |
|
|
|
@ -1048,7 +1049,7 @@ namespace OpenIddict.Server |
|
|
|
|
|
|
|
JsonClaimValueTypes.Json => JToken.Parse(claim.Value), |
|
|
|
JsonClaimValueTypes.JsonArray => JToken.Parse(claim.Value), |
|
|
|
|
|
|
|
|
|
|
|
_ => new OpenIddictParameter(claim.Value) |
|
|
|
}; |
|
|
|
} |
|
|
|
|