GitHub
note
Documentation
https://developer.github.com/apps/building-oauth-apps/authorizing-oauth-apps
Configuration
https://github.com/settings/apps
Options
The GitHub Provider comes with a set of default options:
You can override any of the options to suit your own use case.
Example
import GitHubProvider from "next-auth/providers/github";
...
providers: [
GitHubProvider({
clientId: process.env.GITHUB_ID,
clientSecret: process.env.GITHUB_SECRET
})
]
...
danger
Only allows one callback URL per Client ID / Client Secret.
tip
Email address is always returned, even if the user doesn't have a public email address on their profile.