From 0bc09e2908e5b7f0f4e221046d7e79855e966b58 Mon Sep 17 00:00:00 2001 From: Paul Cornell Date: Fri, 8 Aug 2025 08:02:52 -0700 Subject: [PATCH] OneDrive connectors: supported authentication types --- snippets/general-shared-text/onedrive.mdx | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/snippets/general-shared-text/onedrive.mdx b/snippets/general-shared-text/onedrive.mdx index 38c123c3..0d8d7ed8 100644 --- a/snippets/general-shared-text/onedrive.mdx +++ b/snippets/general-shared-text/onedrive.mdx @@ -24,7 +24,12 @@ allowfullscreen > -- 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. + + + The OneDrive connector does not support any other authentication methods, such as multifactor (MFA) or passwordless authentication. + + 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: @@ -32,6 +37,7 @@ - `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).