Table of Contents

Interface IDiscoveryResponseGenerator

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

Interface for discovery endpoint response generator

public interface IDiscoveryResponseGenerator

Methods

CreateDiscoveryDocumentAsync(string, string)

Creates the discovery document.

Task<Dictionary<string, object>> CreateDiscoveryDocumentAsync(string baseUrl, string issuerUri)

Parameters

baseUrl string

The base URL.

issuerUri string

The issuer URI.

Returns

Task<Dictionary<string, object>>

CreateJwkDocumentAsync()

Creates the JWK document.

Task<IEnumerable<JsonWebKey>> CreateJwkDocumentAsync()

Returns

Task<IEnumerable<JsonWebKey>>