Skip to content

Latest commit

 

History

History
34 lines (24 loc) · 575 Bytes

File metadata and controls

34 lines (24 loc) · 575 Bytes
id title
mailru
Mail.ru

Documentation

https://o2.mail.ru/docs

Configuration

https://o2.mail.ru/app/

Options

The Mail.ru Provider comes with a set of default options:

You can override any of the options to suit your own use case.

Example

import Providers from `next-auth/providers`
...
providers: [
  Providers.MailRu({
    clientId: process.env.MAILRU_CLIENT_ID,
    clientSecret: process.env.MAILRU_CLIENT_SECRET
  })
]
...