šŸ“„ next-auth/providers/strava

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

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

Skip to main content

šŸŽ‰ NextAuth.js is now part of Better Auth !

Version: v4

On this page

Documentation​


http://developers.strava.com/docs/reference/

Options​


The Strava Provider comes with a set of default options:

You can override any of the options to suit your own use case. Ensure the redirect_uri configuration fits your needs accordingly.

Example​


import StravaProvider from "next-auth/providers/strava";...providers: [  StravaProvider({    clientId: process.env.STRAVA_CLIENT_ID,    clientSecret: process.env.STRAVA_CLIENT_SECRET,  })]...