File: osu.md | Updated: 11/15/2025
š NextAuth.js is now part of Better Auth !
Version: v4
On this page
Documentationā
https://osu.ppy.sh/docs/index.html#authentication
Configurationā
https://osu.ppy.sh/home/account/edit#new-oauth-application
Optionsā
The osu! Provider comes with a set of default options:
You can override any of the options to suit your own use case.
note
osu! does not provide a user email!
Exampleā
import OsuProvider from "next-auth/providers/osu";...providers: [ OsuProvider({ clientId: process.env.OSU_CLIENT_ID, clientSecret: process.env.OSU_CLIENT_SECRET })]...