Skip to content

Setting up OneDrive Integration

This guide explains how to set up the Microsoft OneDrive integration for DocuElevate.

Required Configuration Parameters

Variable Description
ONEDRIVE_CLIENT_ID Azure AD application client ID
ONEDRIVE_CLIENT_SECRET Azure AD application client secret
ONEDRIVE_TENANT_ID Azure AD tenant ID: use "common" for personal accounts or your tenant ID for corporate accounts
ONEDRIVE_REFRESH_TOKEN OAuth 2.0 refresh token (required for personal accounts)
ONEDRIVE_FOLDER_PATH Folder path in OneDrive for storing documents

For a complete list of configuration options, see the Configuration Guide.

Setup Methods

DocuElevate supports two distinct OneDrive OAuth flows:

  1. Per-User Integration Wizard (Recommended for end users): Triggered from the Integrations dashboard (/integrations) by clicking Authorize on a OneDrive destination or OneDrive-backed Watch Folder. Credentials are saved securely to your personal integration record.
  2. System-Level Setup Wizard: Available at /onedrive-setup for administrators configuring the global system-wide OneDrive connection.
  3. Manual Setup: Following the step-by-step instructions in this document.

Per-User OAuth Flow (Integrations Dashboard)

End users authorize their own OneDrive integration from the Integrations dashboard:

  1. Navigate to /integrations and click + Add Destination (or + Add Source for Watch Folder).
  2. Create a OneDrive destination integration (or a Watch Folder with source_type = onedrive).
  3. Click the Authorize button next to the integration — it links directly to the OAuth wizard pre-loaded with your integration's configuration.
  4. If the administrator has configured system-wide OneDrive app credentials (ONEDRIVE_CLIENT_ID / ONEDRIVE_CLIENT_SECRET), the wizard defaults to using them — no need to register your own Azure AD app. Uncheck the toggle to use custom credentials if needed.
  5. Click Start Authentication Flow, authorize access via Microsoft, and the refresh token is automatically saved to your personal integration record.
  6. After authorization, an interactive folder browser lets you select the target folder directly from your OneDrive — no need to manually type folder paths.
  7. The page redirects to /integrations on success. Re-authorization is available at any time via the Re-Authorize button.

Note: Your credentials are stored encrypted per-integration and are never mixed with other users' data. Each user can have multiple OneDrive integrations with independent tokens.

Using the System-Level Auth Wizard (Admin)

The easiest way to configure the global OneDrive integration is to use the built-in auth wizard:

  1. Register an application in Azure AD (see steps below).
  2. Navigate to the OneDrive Setup page at /onedrive-setup.
  3. Enter your Client ID and other required information.
  4. Click Start Authentication Flow.
  5. Complete the Microsoft authentication process.
  6. The system will automatically exchange the authorization code for a refresh token.
  7. Copy the generated environment variables for your worker nodes.

The auth wizard handles all the token exchange steps and provides you with the exact configuration needed for your environment.

Types of Microsoft Accounts

There are two main types of Microsoft accounts that can be used with OneDrive integration:

  1. Personal Microsoft Accounts - These include accounts with @outlook.com, @hotmail.com, @live.com domains, or personal Microsoft accounts linked to other email addresses (like Gmail)
  2. Work/School Microsoft Accounts - These are accounts managed by an organization through Microsoft 365 or Azure Active Directory

The setup process differs slightly based on which account type you're using.

Common Setup Steps (All Account Types)

1. Register an application in Azure Active Directory

  1. Go to the Azure Portal
  2. Navigate to "Azure Active Directory" > "App registrations"
  3. Click "New registration"
  4. Enter a name for your application (e.g., "DocuElevate")
  5. For "Supported account types", select the appropriate option:
  6. For personal accounts: "Accounts in any organizational directory and personal Microsoft accounts"
  7. For corporate accounts only: "Accounts in this organizational directory only"
  8. For Redirect URI, select "Web" and enter your callback URL:
  9. For auth wizard: https://your-domain.com/onedrive-callback
  10. For manual setup: any URL you can access (e.g., http://localhost:8000/auth/callback)
  11. Click "Register"

2. Get Application (client) ID

  1. After registration, note the "Application (client) ID" from the overview page
  2. Set this value as ONEDRIVE_CLIENT_ID

3. Create a client secret

  1. In your application page, go to "Certificates & secrets"
  2. Under "Client secrets," click "New client secret"
  3. Add a description and select an expiration period
  4. Click "Add" and immediately copy the secret value (it will only be shown once)
  5. Set this value as ONEDRIVE_CLIENT_SECRET

4. Configure API permissions

  1. In your application page, go to "API permissions"
  2. Click "Add a permission"
  3. Select "Microsoft Graph" > "Delegated permissions"
  4. Search for and add the following permission:
  5. Files.ReadWrite (Allows the app to read and write files that the user has access to)
  6. offline_access (Required for refresh tokens)
  7. If using application permissions (for service accounts), add:
  8. Files.ReadWrite.All (Required for app-only access)
  9. Click "Add permissions"
  10. For organizational accounts, you may need an admin to "Grant admin consent"

Important Scope Change: The system now uses the .default scope during authentication, which requests all permissions that have been granted to the application. This ensures that the app has all required permissions at once, rather than requesting each scope individually.

For Personal Microsoft Accounts

If you're using a personal Microsoft account (@outlook.com, @hotmail.com, or personal accounts linked to other emails):

1. Set Tenant ID to "common"

  • Set ONEDRIVE_TENANT_ID=common in your configuration

2. Generate a Refresh Token

  1. Navigate to the OneDrive Setup page at /onedrive-setup
  2. Enter your Client ID and leave Tenant ID as "common"
  3. Click "Start Authentication Flow" and follow the prompts
  4. The wizard will handle token exchange automatically

Manual Method

  1. Use the following URL (replace CLIENT_ID and REDIRECT_URI with your values): https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=YOUR_CLIENT_ID&response_type=code&redirect_uri=YOUR_REDIRECT_URI&response_mode=query&scope=https://graph.microsoft.com/.default offline_access&prompt=consent
  2. Open this URL in your browser
  3. Sign in with your personal Microsoft account
  4. After authentication, you'll be redirected to your redirect URI with a code parameter in the URL
  5. Copy the code value from the URL (everything after "code=")

3. Exchange Code for Refresh Token (Manual Method Only)

  1. Use the following command to exchange the code for tokens: bash curl -X POST https://login.microsoftonline.com/common/oauth2/v2.0/token \ -H "Content-Type: application/x-www-form-urlencoded" \ -d "client_id=YOUR_CLIENT_ID&scope=https://graph.microsoft.com/.default offline_access&code=YOUR_AUTH_CODE&redirect_uri=YOUR_REDIRECT_URI&grant_type=authorization_code&client_secret=YOUR_CLIENT_SECRET"
  2. From the response JSON, copy the refresh_token value
  3. Set this as ONEDRIVE_REFRESH_TOKEN in your configuration

For Corporate Microsoft Accounts

If you're using a work/school account provided by your organization:

1. Get your Tenant ID

  1. In the Azure Portal, find your "Tenant ID" (also called "Directory ID")
  2. It will be in the Azure Active Directory overview or properties section
  3. Set this value as ONEDRIVE_TENANT_ID in your configuration

2. Configuration based on use case

Option A: Access your own OneDrive (Interactive Login)

This option requires a refresh token: 1. Use the auth wizard with your tenant ID, or 2. Follow the same manual steps as for personal accounts, but use your work email to sign in 3. Make sure to set ONEDRIVE_TENANT_ID to your organization's tenant ID instead of "common" 4. Set the refresh token you receive as ONEDRIVE_REFRESH_TOKEN

Option B: Access OneDrive as a system service (App-only access)

This option is for service accounts or automated systems with no user interaction: 1. In API permissions, add "Application permissions" instead of "Delegated permissions" 2. Add Files.ReadWrite.All permission under "Application permissions" 3. Click "Grant admin consent" (requires admin privileges) 4. In this case, ONEDRIVE_REFRESH_TOKEN is not needed as the app will use client credentials flow 5. Note: This approach can only access specific shared folders or sites, not personal OneDrives

Troubleshooting OAuth Login Issues

If you encounter errors during authentication:

  1. Check account permissions:
  2. Ensure your Microsoft account has the necessary permissions to grant access
  3. For corporate accounts, check if your admin has restricted third-party app access

  4. Permission errors:

  5. Verify the app registration has the correct API permissions
  6. For corporate accounts, ensure an admin has consented to the permissions

  7. Refresh token expired:

  8. If uploads stop working, you can generate a new refresh token using the auth wizard
  9. Click on "Refresh Token" in the OneDrive setup page

  10. Scope issues:

  11. If you see permission errors, make sure your app has the correct permissions added
  12. The .default scope is now used, which includes all permissions granted to the app
  13. Check that both Files.ReadWrite and offline_access permissions are added to your app

Configuration Examples

Personal Microsoft Account:

ONEDRIVE_CLIENT_ID=12345678-1234-1234-1234-123456789012
ONEDRIVE_CLIENT_SECRET=your_client_secret
ONEDRIVE_TENANT_ID=common
ONEDRIVE_REFRESH_TOKEN=your_refresh_token
ONEDRIVE_FOLDER_PATH=Documents/Uploads

Corporate Account with Interactive Login:

ONEDRIVE_CLIENT_ID=12345678-1234-1234-1234-123456789012
ONEDRIVE_CLIENT_SECRET=your_client_secret
ONEDRIVE_TENANT_ID=87654321-4321-4321-4321-210987654321
ONEDRIVE_REFRESH_TOKEN=your_refresh_token
ONEDRIVE_FOLDER_PATH=Documents/Uploads

Corporate Account with App-Only Access:

ONEDRIVE_CLIENT_ID=12345678-1234-1234-1234-123456789012
ONEDRIVE_CLIENT_SECRET=your_client_secret
ONEDRIVE_TENANT_ID=87654321-4321-4321-4321-210987654321
# No refresh token needed for app-only access
ONEDRIVE_FOLDER_PATH=Documents/Uploads