You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: astro/src/content/docs/identityserver/configuration/dcr.mdx
+40Lines changed: 40 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -190,6 +190,46 @@ and configure the store implementation.
190
190
191
191
</Steps>
192
192
193
+
### Adding the Registration Endpoint to the Discovery Document
194
+
195
+
By default, the Dynamic Client Registration (DCR) endpoint is not included in the [discovery document](/identityserver/reference/endpoints/discovery.md) of Duende IdentityServer.
196
+
197
+
To include it, change the Discovery Document options when registering IdentityServer in the service collection:
198
+
199
+
```csharp
200
+
// Program.cs
201
+
builder.Services.AddIdentityServer(options=>
202
+
{
203
+
// Either use a static URL for the registration endpoint, when hosted outside of IdentityServer:
0 commit comments