šŸ“„ next-auth/providers/osu

File: osu.md | Updated: 11/15/2025

Source: https://next-auth.js.org/providers/osu

Skip to main content

šŸŽ‰ 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  })]...