• Articles
  • Configuration
  • Developers
  • Contact
  • Privacy & Terms
Show / Hide Table of Contents
  • Tokens
  • Requesting a Token
  • Refreshing a Token
  • Discovery Endpoint
  • Authorize Endpoint
  • Token Endpoint
  • UserInfo Endpoint
  • Introspection Endpoint
  • Revocation Endpoint
  • End Session Endpoint
  • Device Authorization Endpoint

Discovery Endpoint

The discovery endpoint can be used to retrieve metadata about your IdentityServer - it returns information like the issuer name, key material, supported scopes etc.

The discovery endpoint is available via /.well-known/openid-configuration relative to the base address, e.g.:

https://transformidentity.com/.well-known/openid-configuration

.NET client library

You can use the IdentityModel client library to programmatically interact with the protocol endpoint from .NET code.

var client = new HttpClient();

var disco = await client.GetDiscoveryDocumentAsync("https://transformidentity.com");
Back to top © 2020 Technology Transformation Group Limited.  All rights reserved.