-
-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c212e96
commit c004659
Showing
1 changed file
with
53 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
--- | ||
id: duende-identityserver6 | ||
title: DuendeIdentityServer6 | ||
--- | ||
|
||
## Documentation | ||
|
||
https://docs.duendesoftware.com/identityserver/v6 | ||
|
||
## Options | ||
|
||
The **DuendeIdentityServer6 Provider** comes with a set of default options: | ||
|
||
- [DuendeIdentityServer6 Provider options](https://github.com/nextauthjs/next-auth/blob/v4/packages/next-auth/src/providers/duende-identity-server6.ts) | ||
|
||
You can override any of the options to suit your own use case. | ||
|
||
## Example | ||
|
||
```js | ||
import DuendeIDS6Provider from "next-auth/providers/duende-identity-server6" | ||
|
||
... | ||
providers: [ | ||
DuendeIDS6Provider({ | ||
clientId: process.env.DUENDE_IDS6_ID, | ||
clientSecret: process.env.DUENDE_IDS6_SECRET, | ||
issuer: process.env.DUENDE_IDS6_ISSUER, | ||
}) | ||
] | ||
... | ||
``` | ||
|
||
## Demo IdentityServer | ||
|
||
The configuration below is for the demo server at https://demo.duendesoftware.com/ | ||
|
||
If you want to try it out, you can copy and paste the configuration below. | ||
|
||
You can sign in to the demo service with either <b>bob/bob</b> or <b>alice/alice</b>. | ||
|
||
```js | ||
import DuendeIDS6Provider from "next-auth/providers/duende-identity-server6" | ||
... | ||
providers: [ | ||
DuendeIDS6Provider({ | ||
clientId: "interactive.confidential", | ||
clientSecret: "secret", | ||
issuer: "https://demo.duendesoftware.com", | ||
}) | ||
] | ||
... | ||
``` |
c004659
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
next-auth-docs – ./docs
next-auth-docs-authjs.vercel.app
www.next-auth.js.org
next-auth.js.org
v4.authjs.dev
next-auth-docs-dun.vercel.app
next-auth-docs-git-v4-authjs.vercel.app