Table of Contents

Interface IPushedAuthorizationResponseGenerator

Namespace
Duende.IdentityServer.ResponseHandling
Assembly
Duende.IdentityServer.dll

Service that generates response models for the pushed authorization endpoint. This service encapsulates the behavior that is needed to create a response model from a validated request.

public interface IPushedAuthorizationResponseGenerator

Methods

CreateResponseAsync(ValidatedPushedAuthorizationRequest)

Asynchronously creates a response model from a validated pushed authorization request.

Task<PushedAuthorizationResponse> CreateResponseAsync(ValidatedPushedAuthorizationRequest request)

Parameters

request ValidatedPushedAuthorizationRequest

The validated pushed authorization request.

Returns

Task<PushedAuthorizationResponse>

A task that contains response model indicating either success or failure.