NextAuth.js is a complete open-source authentication solution.
This is an example application that shows how next-auth
can be used to implement Sign In with Worldcoin.
Go to NextAuth's documentation and Worldcoin's Sign In documentation for more information and documentation.
Click the "Use this Template" button to create a new repository from this template.
git clone your_repo_url
cd your_repo_name
pnpm i
Create a new application in the Worldcoin Developer Portal. Staging apps must use the Worldcoin Simulator for authentication, whereas production apps will use the World App.
Add your callback URLs:
- (staging apps only)
http://localhost:3000/api/auth/callback/worldcoin
https://your-app-url.com/api/auth/callback/worldcoin
Note your Client ID and Client Secret for the next step.
Copy the .env.example file in this directory to .env.local (which will be ignored by Git):
cp .env.example .env.local
Add details for your Worldcoin application to the .env.local
file. Get your Client ID and Client Secret from the Worldcoin Developer Portal.
Worldcoin's provider is pre-configured in this template. If you wish to add more providers, change line 33 of components/header.tsx
to signIn()
to allow users to choose their provider from a list and follow the steps below.
-
Review and update options in
pages/api/auth/[...nextauth].js
as needed. -
When setting up OAuth, in the developer admin page for each of your OAuth services, you should configure the callback URL to use a callback path of
{server}/api/auth/callback/{provider}
.
e.g. For Google OAuth you would use: http://localhost:3000/api/auth/callback/google
A list of configured providers and their callback URLs is available from the endpoint /api/auth/providers
. You can find more information at https://next-auth.js.org/configuration/providers/oauth
- You can also choose to specify an SMTP server for passwordless sign in via email.
A database may be needed needed to persist user accounts and to support email sign in when adding extra providers. However, you can still use NextAuth.js for authentication without a database by using OAuth for authentication. If you do not specify a database, JSON Web Tokens will be enabled by default.
You can skip configuring a database and come back to it later if you want.
For more information about setting up a database, please check out the following links:
To run your site locally, use:
pnpm run dev
To run it in production mode, use:
pnpm run build
pnpm run start
Follow the Deployment documentation or deploy the example instantly using Vercel. Ensure you set your environment variables in your production environment as well.