Dropbox
Access Dropbox files and folders with scoped OAuth and PKCE support.
Auth Model
User OAuth
Standard OAuth 2.0 authorization. A user grants consent and receives an access token. Authpipe handles refresh, rotation, and health monitoring automatically.
Connection Flow
// Get a valid credential — always fresh, zero latency const { credential } = await authpipe.getCredential({ provider: 'dropbox', tenantId: 'org_acme', userId: 'user_123', });
// Use the credential with the provider API const response = await fetch('https://api.example.com/data', { headers: { Authorization: `Bearer ${credential}` }, });
// Drop-in React component <ConnectButton provider="dropbox" onSuccess={(conn) => console.log('Connected!', conn)} />
Available Scopes
Permissions you can request when connecting to Dropbox.
account_info.read View basic account information (name, email, quota)
files.metadata.read View information about files and folders (names, sizes, dates)
files.metadata.write Edit file and folder metadata (rename, move, delete)
files.content.read View and download file content
files.content.write Edit and upload files and folders
sharing.read View shared files, folders, and links
sharing.write Create and manage shared links, folders, and file requests
file_requests.read View file requests
file_requests.write Create and manage file requests
contacts.read View the user's contact list
contacts.write Manage the user's contact list
What Authpipe handles for Dropbox
OAuth Orchestration
PKCE, state validation, callback handling, and provider-specific quirks — all automatic.
Encrypted Vault
AES-256-GCM encryption with per-tenant key isolation. OAuth tokens, API keys, and webhook secrets — never exposed to the frontend.
Silent Refresh
Proactive token refresh before expiry. SDK returns from local cache with zero latency.
Health Monitoring
Scheduled checks detect revoked tokens and expired credentials before users notice.
More Productivity providers
Airtable
Connect to Airtable bases and records with PKCE-required OAuth and scoped permissions.
Baserow
Manage databases and tables on your Baserow instance.
Box
Store, share, and manage files and content with Box via OAuth authentication.
Clockify
Track time and generate reports with Clockify.
Ready to connect Dropbox?
Get your first 100 connections free. Set up in minutes with our SDK.