Wikimedia Provider
Resources
Setup
Callback URL
https://example.com/api/auth/callback/wikimedia
Environment Variables
AUTH_WIKIMEDIA_ID
AUTH_WIKIMEDIA_SECRET
Configuration
/auth.ts
import NextAuth from "next-auth"
import Wikimedia from "next-auth/providers/wikimedia"
export const { handlers, auth, signIn, signOut } = NextAuth({
providers: [Wikimedia],
})
- Go to and accept the Consumer Registration doc: https://meta.wikimedia.org/wiki/Special:OAuthConsumerRegistration
- Request a new OAuth 2.0 consumer to get the
clientId
andclientSecret
: https://meta.wikimedia.org/wiki/Special:OAuthConsumerRegistration/propose/oauth2- Add the following redirect URL into the console:
http://<your-next-app-url>/api/auth/callback/wikimedia
- Do not check the box next to This consumer is only for your username
- Unless you explicitly need a larger scope, feel free to select the radio button labelled User identity verification only - no ability to read pages or act on the users behalf.
- Add the following redirect URL into the console:
After registration, you can initially test your application only with your own Wikimedia account. You may have to wait several days for the application to be approved for it to be used by everyone.
Notes
This provider also supports all Wikimedia projects:
- Wikipedia
- Wikidata
- Wikibooks
- Wiktionary
- etc..
Please be aware that Wikimedia accounts do not have to have an associated email address. So you may want to add check if the user has an email address before allowing them to login.