/
/
/
1"""OneDrive File System Provider constants."""
2
3from typing import Final
4
5# Microsoft OAuth endpoints (consumer/personal accounts)
6OAUTH_AUTHORIZE_URL: Final[str] = (
7 "https://login.microsoftonline.com/consumers/oauth2/v2.0/authorize"
8)
9OAUTH_TOKEN_URL: Final[str] = "https://login.microsoftonline.com/consumers/oauth2/v2.0/token"
10# read access to all the user's files + a refresh token
11OAUTH_SCOPE: Final[str] = "Files.Read.All offline_access"
12# Microsoft Graph API base URL
13GRAPH_BASE_URL: Final[str] = "https://graph.microsoft.com/v1.0"
14