Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion snippets/general-shared-text/onedrive.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,20 @@
allowfullscreen
></iframe>

- Two types of authentication are supported: client credentials and a username and password. Both authentication types require a Microsoft Entra ID app registration.
- Two types of authentication are supported: client credentials, and a username and password. Both authentication types require a Microsoft Entra ID app registration.

<Note>
The OneDrive connector does not support any other authentication methods, such as multifactor (MFA) or passwordless authentication.
</Note>

You will need to provide the **Application (client) ID**, **Directory (tenant) ID**, and **Client secret** for the Entra ID app registration that has access to the target OneDrive account, and
the app registration must have the correct set of Microsoft Graph access permissions. These permissions include:

- `Files.ReadWrite.All` (if both reading and writing are needed)
- `Sites.ReadWrite.All` (if both reading and writing are needed)
- `User.Read.All`
- `Directory.Read.All`

1. [Create an Entra ID app registration](https://learn.microsoft.com/entra/identity-platform/quickstart-register-app?pivots=portal).
2. [Add Graph access permissions to an app registration](https://learn.microsoft.com/entra/identity-platform/howto-update-permissions?pivots=portal#add-permissions-to-an-application).
3. [Grant consent for the added Graph permissions](https://learn.microsoft.com/entra/identity-platform/howto-update-permissions?pivots=portal#grant-consent-for-the-added-permissions-for-the-enterprise-application).
Expand Down