Integrate Microsoft Graph SDK into any project — .NET, TypeScript/JavaScript, or Python. Covers auth patterns (client credentials, OBO, managed identity), SDK s
复制下面这句话,粘贴给 Claude Code、Codex、Cursor 等 AI 编程工具,它会读取安装说明并在你确认后完成安装。
请阅读 https://ai.atlankj.com/install/asset/gh-msgraph-sdk-75b22e0aab2f ,按照其中的说明把「msgraph-sdk」安装到你(当前 AI 工具)中。执行前先告诉我将运行的命令和写入的位置,等我确认。
查看 AI 将读取的安装说明正在读取 GitHub 原文…
内容来自 GitHub 原始文件,由原作者维护。在 GitHub 查看
Use this skill when integrating Microsoft Graph into an application to access Microsoft 365 data and services.
Always ground implementation in the current Microsoft Graph SDK documentation and SDK version for the target language rather than relying on memory alone.
.cs, .csproj, or .sln files, or when the user asks for C# guidance. Follow references/dotnet.md.package.json, .ts, or .js files, or when the user asks for Node.js / browser guidance. Follow references/typescript.md..py, pyproject.toml, or requirements.txt, or when the user asks for Python guidance. Follow references/python.md.Selecting the wrong auth flow is the most common Graph integration mistake. Apply this decision tree before writing any auth code:
| Scenario | Flow to use |
|---|---|
| Background service / daemon with no user | Client credentials (app-only) |
| Agent or API acting on behalf of a signed-in user | On-Behalf-Of (OBO) |
| App running in Azure (Function, Container App, VM) | Managed Identity (preferred over secrets) |
| CLI tool or local dev script | Device code or interactive browser |
| Single-page app (browser only) | Authorization code + PKCE |
DefaultAzureCredential in Azure-hosted apps; it tries managed identity first and falls back gracefully for local dev.Always construct GraphServiceClient once and reuse it (it manages token caching internally).
Pass a credential from the Azure Identity library — never build raw HTTP clients manually.
client.Users[userId].Messages.GetAsync(...).await async calls.$select to limit returned fields — Graph returns large default payloads.$filter server-side rather than filtering returned collections in memory.$expand to fetch related resources in a single call when relationships are small.Graph paginates collections. Never assume all items arrive in one response:
@odata.nextLink on the response.PageIterator helper (available in all three SDKs) to walk pages automatically.$top to control page size (max varies by resource, typically 999).Combine up to 20 independent Graph calls into a single HTTP request using the $batch endpoint. Use batching when:
Batch responses arrive out of order — match them by the id field you assigned each request.
Use delta queries to sync changes incrementally instead of polling full collections:
GET /users/delta returns all items + a @odata.deltaLink.deltaLink to receive only what changed since the last sync.deltaLink durably (database, blob) between sync runs.Subscribe to resource changes with POST /subscriptions:
expirationDateTime (max varies by resource; typically 1–3 days for mail/calendar, up to 4230 minutes for users/groups).validationToken query parameter on creation — echo it back as plain text with HTTP 200.notificationUrl + lifecycleNotificationUrl) to handle missed events and reauthorization.Graph throttles aggressively. Always handle HTTP 429:
Retry-After header — it specifies exact seconds to wait, not a fixed backoff.Get permissions right before writing auth code — wrong scopes result in 403 errors that are hard to debug later.
| Goal | Resource path |
|---|---|
| Get signed-in user's profile | GET /me |
| List user's mailbox messages | GET /me/messages |
| Send an email | POST /me/sendMail |
| List calendar events | GET /me/events |
| Get user's OneDrive root | GET /me/drive/root/children |
| List Teams the user is in | GET /me/joinedTeams |
| Post a Teams channel message | POST /teams/{id}/channels/{id}/messages |
| List SharePoint site lists | GET /sites/{siteId}/lists |
| Search across M365 | POST /search/query |
| List all users in tenant (app-only) | GET /users |
| Get group members | GET /groups/{id}/members |
In similar fashion, use the SDK's fluent API to navigate to these resources in code.
GraphServiceClient is constructed once and reused.Retry-After logic.