Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(providers): add tip about async provider code #2443

Merged
merged 1 commit into from
Aug 26, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions www/docs/configuration/options.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,21 @@ Options are passed to NextAuth.js when initializing it in an API route.

An array of authentication providers for signing in (e.g. Google, Facebook, Twitter, GitHub, Email, etc) in any order. This can be one of the built-in providers or an object with a custom provider.

If you need to use an asynchronous function in your provider instantiation, you can setup your `[...nextauth].js` file like so:

```js
export default async function handler(req, res) {
NextAuth(req, res, {
providers: [
Providers.IdentityServer4({
id: "identity-server",
clientSecret: await GetSecret(),
}),
],
})
}
```

See the [providers documentation](/configuration/providers) for a list of supported providers and how to use them.

---
Expand Down