File: bungie.md | Updated: 11/15/2025
π NextAuth.js is now part of Better Auth !
This is documentation for NextAuth.js v3, which is no longer actively maintained.
For up-to-date documentation, see the **latest version ** (v4).
Version: v3
On this page
Documentationβ
https://github.com/Bungie-net/api/wiki/OAuth-Documentation
Configurationβ
https://www.bungie.net/en/Application
Optionsβ
The Bungie Provider comes with a set of default options:
You can override any of the options to suit your own use case.
Exampleβ
import Providers from `next-auth/providers`...providers: [ Providers.Bungie({ clientId: process.env.BUNGIE_CLIENT_ID, clientSecret: process.env.BUNGIE_SECRET, headers: { 'X-API-Key': provess.env.BUNGIE_API_KEY } }),]...
tip
Bungie require all sites to run HTTPS (including local development instances).
tip
Bungie doesn't allow you to use localhost as the website URL, instead you need to use https://127.0.0.1:3000
Navigate to https://www.bungie.net/en/Application and fill in the required details:
Access items like your Bungie.net notifications, memberships, and recent Bungie.Net forum activity.The following guide may be helpful:
You will need to edit your host file and point your site at 127.0.0.1
On Windows (Run Powershell as administrator)
Add-Content -Path C:\Windows\System32\drivers\etc\hosts -Value "127.0.0.1`tdev.example.com" -Force
127.0.0.1 dev.example.com
Creating a certificate for localhost is easy with openssl. Just put the following command in the terminal. The output will be two files: localhost.key and localhost.crt.
openssl req -x509 -out localhost.crt -keyout localhost.key \ -newkey rsa:2048 -nodes -sha256 \ -subj '/CN=localhost' -extensions EXT -config <( \ printf "[dn]\nCN=localhost\n[req]\ndistinguished_name = dn\n[EXT]\nsubjectAltName=DNS:localhost\nkeyUsage=digitalSignature\nextendedKeyUsage=serverAuth")
tip
Windows
The OpenSSL executable is distributed with Git
for Windows. Once installed you will find the openssl.exe file in C:/Program Files/Git/mingw64/bin which you can add to the system PATH environment variable if itβs not already done.
Add environment variable OPENSSL_CONF=C:/Program Files/Git/mingw64/ssl/openssl.cnf
req -x509 -out localhost.crt -keyout localhost.key \ -newkey rsa:2048 -nodes -sha256 \ -subj '/CN=localhost'
Create directory certificates and place localhost.key and localhost.crt
You can create a server.js in the root of your project and run it with node server.js to test Sign in with Bungie integration locally:
const { createServer } = require("https")const { parse } = require("url")const next = require("next")const fs = require("fs")const dev = process.env.NODE_ENV !== "production"const app = next({ dev })const handle = app.getRequestHandler()const httpsOptions = { key: fs.readFileSync("./certificates/localhost.key"), cert: fs.readFileSync("./certificates/localhost.crt"),}app.prepare().then(() => { createServer(httpsOptions, (req, res) => { const parsedUrl = parse(req.url, true) handle(req, res, parsedUrl) }).listen(3000, (err) => { if (err) throw err console.log("> Ready on https://localhost:3000") })})