mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-11 04:19:31 +00:00
feat: dropbox (#286)
This commit is contained in:
50
docs/content/docs/authentication/dropbox.mdx
Normal file
50
docs/content/docs/authentication/dropbox.mdx
Normal file
@@ -0,0 +1,50 @@
|
||||
---
|
||||
title: Dropbox
|
||||
description: Dropbox Provider
|
||||
---
|
||||
|
||||
<Steps>
|
||||
<Step>
|
||||
### Get your Dropbox credentials
|
||||
To use Dropbox sign in, you need a client ID and client secret. You can get them from the [Dropbox Developer Portal](https://www.dropbox.com/developers). You can Allow "Implicit Grant & PKCE" for the application in the App Console.
|
||||
|
||||
Make sure to set the redirect URL to `http://localhost:3000/api/auth/callback/dropbox` for local development. For production, you should set it to the URL of your application. If you change the base path of the auth routes, you should update the redirect URL accordingly.
|
||||
</Step>
|
||||
|
||||
If you need deeper dive into Dropbox Authenticationcation, you can check out the [official documentation](https://developers.dropbox.com/oauth-guide).
|
||||
|
||||
<Step>
|
||||
### Configure the provider
|
||||
To configure the provider, you need to import the provider and pass it to the `socialProviders` option of the auth instance.
|
||||
|
||||
```ts title="auth.ts"
|
||||
import { betterAuth } from "better-auth"
|
||||
|
||||
export const auth = betterAuth({
|
||||
socialProviders: { // [!code highlight]
|
||||
dropbox: { // [!code highlight]
|
||||
clientId: process.env.DROPBOX_CLIENT_ID as string, // [!code highlight]
|
||||
clientSecret: process.env.DROPBOX_CLIENT_SECRET as string, // [!code highlight]
|
||||
}, // [!code highlight]
|
||||
}, // [!code highlight]
|
||||
})
|
||||
```
|
||||
</Step>
|
||||
<Step>
|
||||
### Signin with Dropbox
|
||||
To signin with Dropbox, you can use the `signIn.social` function provided by the client. The `signIn` function takes an object with the following properties:
|
||||
- `provider`: The provider to use. It should be set to `dropbox`.
|
||||
|
||||
```ts title="client.ts"
|
||||
import { createAuthClient } from "better-auth/client"
|
||||
const client = createAuthClient()
|
||||
|
||||
const signin = async () => {
|
||||
const data = await client.signIn.social({
|
||||
provider: "dropbox"
|
||||
})
|
||||
}
|
||||
```
|
||||
</Step>
|
||||
|
||||
</Steps>
|
||||
Reference in New Issue
Block a user