Microsoft.Graph
5.61.0
Prefix Reserved
dotnet add package Microsoft.Graph --version 5.61.0
NuGet\Install-Package Microsoft.Graph -Version 5.61.0
<PackageReference Include="Microsoft.Graph" Version="5.61.0" />
paket add Microsoft.Graph --version 5.61.0
#r "nuget: Microsoft.Graph, 5.61.0"
// Install Microsoft.Graph as a Cake Addin #addin nuget:?package=Microsoft.Graph&version=5.61.0 // Install Microsoft.Graph as a Cake Tool #tool nuget:?package=Microsoft.Graph&version=5.61.0
Microsoft Graph .NET Client Library
Integrate the Microsoft Graph API into your .NET project!
The Microsoft Graph .NET Client Library targets .NetStandard 2.0.
Installation via NuGet
To install the client library via NuGet:
- Search for
Microsoft.Graph
in the NuGet Library, or - Type
Install-Package Microsoft.Graph
into the Package Manager Console.
Getting started
1. Register your application
Register your application to use Microsoft Graph API using the Microsoft Application Registration Portal.
2. Authenticate for the Microsoft Graph service
The Microsoft Graph .NET Client Library supports the use of TokenCredential classes in the Azure.Identity library.
You can read more about available Credential classes here and examples on how to quickly setup TokenCredential instances can be found here.
The recommended library for authenticating against Microsoft Identity (Azure AD) is MSAL.
For an example of authenticating a UWP app using the V2 Authentication Endpoint, see the Microsoft Graph UWP Connect Library.
3. Create a Microsoft Graph client object with an authentication provider
An instance of the GraphServiceClient class handles building requests,
sending them to Microsoft Graph API, and processing the responses. To create a
new instance of this class, you need to provide an instance of
IAuthenticationProvider
which can authenticate requests to Microsoft Graph.
For more information on initializing a client instance, see the library overview
4. Make requests to the graph
Once you have completed authentication and have a GraphServiceClient, you can begin to make calls to the service. The requests in the SDK follow the format of the Microsoft Graph API's RESTful syntax.
For example, to retrieve a user's default drive:
var drive = await graphClient.Me.Drive.GetAsync();
GetAsync
will return a Drive
object on success and throw a
ApiException
on error.
To get the current user's root folder of their default drive:
// Get the user's driveId
var drive = await graphClient.Me.Drive.GetAsync();
var userDriveId = drive.Id;
// use the driveId to get the root drive
var rootItem = await graphClient.Drives[userDriveId].Root.GetAsync();
GetAsync
will return a DriveItem
object on success and throw a
ApiException
on error.
For a general overview of how the SDK is designed, see overview.
The following sample applications are also available:
- Microsoft Graph UWP Connect Sample
- Microsoft Graph UWP Snippets Sample
- Microsoft Graph MeetingBot sample for UWP
- Microsoft Graph Connect Sample for ASP.NET 4.6
- Microsoft Graph Snippets Sample for ASP.NET 4.6
- Microsoft Graph SDK Snippets Library for Xamarin.Forms
- Microsoft Graph Connect Sample for Xamarin Forms
- Microsoft Graph Meeting Manager Sample for Xamarin.Forms
- Microsoft Graph Property Manager Sample for Xamarin Native
Documentation and resources
- Overview
- Collections
- Errors
- Headers
- Microsoft Graph API
- Release notes
- Blog - Microsoft Graph .NET SDK updates 3/16/20
Notes
Upgrading from v1
Between 1.x and 3.x there were some minor possibly breaking changes:
- .NET Standard minimum version bumped from
netStandard1.3
tonetstandard2.0
- .NET Framework minimum version bumped from
net45
tonet461
- a change in enum order for
GiphyRatingType
ParticipantInfo
becameInvitationParticipantInfo
CallRecordRequestBody
becameCallRecordResponseRequestBody
Upgrading to v4
Between 3.x and 4.x there were some major breaking changes:
- .NET Standard minimum version bumped from
netStandard1.3
tonetstandard2.0
- .NET Framework minimum version bumped from
net45
tonet462
- Replacing Newtosoft.Json with System.Text.Json
- Upgrading Microsoft.Graph.Core dependency to version 2.0.0
View the upgrade guide here.
Upgrading to v5
Between 4.x and 5.x there were several major breaking changes as the SDK now uses Kiota for code generation.
View the upgrade guide here.
Issues
To view or log issues, see issues.
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact [email protected] with any additional questions or comments.
Other resources
- NuGet Package: https://www.nuget.org/packages/Microsoft.Graph
Building library locally
If you are looking to build the library locally for the purposes of contributing code or running tests, you will need to:
- Have the .NET Core SDK (> 1.0) installed
- Run
dotnet restore
from the command line in your package directory - Run
nuget restore
andmsbuild
from CLI or run Build from Visual Studio to restore Nuget packages and build the project
Due to long file names you may need to run
git config --system core.longpaths true
before cloning the repo to your system.
Additionally for Windows OS, set the value of the parameter
HKLM\SYSTEM\CurrentControlSet\Control\FileSystem
LongPathsEnabled
to1
, before opening the solution in VS
License
Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT license. See Third Party Notices for information on the packages referenced via NuGet.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 is compatible. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 is compatible. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- Microsoft.Graph.Core (>= 3.1.22)
-
.NETStandard 2.1
- Microsoft.Graph.Core (>= 3.1.22)
-
net5.0
- Microsoft.Graph.Core (>= 3.1.22)
NuGet packages (208)
Showing the top 5 NuGet packages that depend on Microsoft.Graph:
Package | Downloads |
---|---|
Microsoft.Identity.Web.MicrosoftGraph
This package enables ASP.NET Core web apps and web APIs to use the Microsoft identity platform (formerly Azure AD v2.0). This package is specifically used for web applications, which sign-in users and call Microsoft Graph, and for protected web APIs that call Microsoft Graph. |
|
GSF.Security
Library of core security framework for implementing role-based security with integrated Active Directory, local account and database style authentication across various .NET application types. |
|
PnP.Framework
PnP Framework contains the PnP Provisioning engine and a ton of extension methods that will make you more productive while developing for Microsoft 365. |
|
SharePointPnPCoreOnline
Retired - please use PnP Framework (https://github.com/pnp/pnpframework) going forward. Core CSOM extension methods for SharePoint Online add-in model development. This will increase productivity of the developers by abstracting complex operations. |
|
Rystem.Content.Infrastructure.M365.Sharepoint
Rystem.Content helps you to integrate with azure services or to create an abstraction layer among your infrastructure and your business. |
GitHub repositories (55)
Showing the top 5 popular GitHub repositories that depend on Microsoft.Graph:
Repository | Stars |
---|---|
microsoft/semantic-kernel
Integrate cutting-edge LLM technology quickly and easily into your apps
|
|
unoplatform/uno
Open-source platform for building cross-platform native Mobile, Web, Desktop and Embedded apps quickly. Create rich, C#/XAML, single-codebase apps from any IDE. Hot Reload included! 90m NuGet Downloads!!
|
|
Azure/azure-sdk-for-net
This repository is for active development of the Azure SDK for .NET. For consumers of the SDK we recommend visiting our public developer docs at https://learn.microsoft.com/dotnet/azure/ or our versioned developer docs at https://azure.github.io/azure-sdk-for-net.
|
|
lukencode/FluentEmail
All in one email sender for .NET. Supports popular senders (SendGrid, MailGun, etc) and Razor templates.
|
|
microsoft/onefuzz
A self-hosted Fuzzing-As-A-Service platform
|
Version | Downloads | Last updated |
---|---|---|
5.61.0 | 201,316 | 10/17/2024 |
5.60.0 | 317,349 | 10/9/2024 |
5.59.0 | 129,316 | 10/2/2024 |
5.58.0 | 406,715 | 9/12/2024 |
5.57.0 | 140,543 | 9/5/2024 |
5.56.1 | 242,563 | 8/28/2024 |
5.56.0 | 3,720,087 | 6/6/2024 |
5.55.0 | 243,064 | 5/31/2024 |
5.54.0 | 221,044 | 5/24/2024 |
5.53.0 | 324,114 | 5/16/2024 |
5.52.0 | 363,300 | 5/8/2024 |
5.51.0 | 159,655 | 5/2/2024 |
5.50.0 | 249,363 | 4/25/2024 |
5.49.0 | 468,905 | 4/17/2024 |
5.48.0 | 355,873 | 4/9/2024 |
5.47.0 | 133,399 | 4/5/2024 |
5.46.0 | 310,893 | 3/27/2024 |
5.45.0 | 210,359 | 3/22/2024 |
5.44.0 | 977,295 | 2/28/2024 |
5.43.0 | 375,096 | 2/21/2024 |
5.42.0 | 297,294 | 2/14/2024 |
5.41.0 | 1,074,289 | 2/1/2024 |
5.40.0 | 775,686 | 1/24/2024 |
5.39.0 | 327,140 | 1/17/2024 |
5.38.0 | 561,963 | 1/4/2024 |
5.37.0 | 444,727 | 12/14/2023 |
5.36.0 | 850,757 | 11/22/2023 |
5.35.0 | 303,897 | 11/16/2023 |
5.34.0 | 270,218 | 11/8/2023 |
5.33.0 | 177,696 | 11/3/2023 |
5.32.0 | 259,277 | 10/26/2023 |
5.31.0 | 278,294 | 10/19/2023 |
5.30.0 | 158,310 | 10/12/2023 |
5.29.0 | 133,771 | 10/6/2023 |
5.28.0 | 407,146 | 9/21/2023 |
5.27.0 | 175,032 | 9/14/2023 |
5.26.0 | 177,090 | 9/6/2023 |
5.25.0 | 184,188 | 8/31/2023 |
5.24.0 | 301,703 | 8/24/2023 |
5.23.0 | 137,412 | 8/18/2023 |
5.22.0 | 277,320 | 8/10/2023 |
5.21.0 | 215,287 | 8/2/2023 |
5.20.0 | 120,604 | 7/27/2023 |
5.19.0 | 191,034 | 7/19/2023 |
5.18.0 | 211,718 | 7/12/2023 |
5.17.0 | 231,785 | 7/5/2023 |
5.16.0 | 169,313 | 6/29/2023 |
5.15.0 | 285,686 | 6/21/2023 |
5.14.0 | 184,804 | 6/15/2023 |
5.13.0 | 235,111 | 6/9/2023 |
5.12.0 | 568,242 | 5/25/2023 |
5.11.0 | 256,430 | 5/17/2023 |
5.10.0 | 209,047 | 5/11/2023 |
5.9.0 | 155,413 | 5/4/2023 |
5.8.0 | 135,405 | 4/28/2023 |
5.7.0 | 192,070 | 4/20/2023 |
5.6.0 | 272,449 | 4/13/2023 |
5.5.0 | 392,716 | 4/6/2023 |
5.4.0 | 184,182 | 3/29/2023 |
5.3.0 | 221,891 | 3/22/2023 |
5.2.0 | 200,163 | 3/15/2023 |
5.1.0 | 149,466 | 3/8/2023 |
5.0.0 | 224,509 | 2/28/2023 |
5.0.0-rc.5 | 9,386 | 2/9/2023 |
5.0.0-rc.4 | 3,534 | 1/27/2023 |
5.0.0-rc.3 | 2,699 | 1/18/2023 |
5.0.0-rc.2 | 1,337 | 1/11/2023 |
5.0.0-rc.1 | 5,648 | 12/16/2022 |
5.0.0-preview.14 | 64,638 | 11/23/2022 |
5.0.0-preview.13 | 35,648 | 10/19/2022 |
5.0.0-preview.12 | 3,247 | 9/28/2022 |
5.0.0-preview.11 | 1,646 | 9/14/2022 |
5.0.0-preview.10 | 71,193 | 7/20/2022 |
5.0.0-preview.9 | 2,305 | 7/13/2022 |
5.0.0-preview.8 | 20,255 | 6/21/2022 |
5.0.0-preview.7 | 1,010 | 6/9/2022 |
5.0.0-preview.6 | 658 | 6/2/2022 |
5.0.0-preview.5 | 4,756 | 5/20/2022 |
5.0.0-preview.4 | 4,613 | 5/6/2022 |
5.0.0-preview.3 | 3,335 | 4/20/2022 |
5.0.0-preview.2 | 992 | 4/5/2022 |
5.0.0-preview.1 | 1,429 | 3/24/2022 |
4.54.0 | 4,072,226 | 2/16/2023 |
4.53.0 | 949,989 | 2/8/2023 |
4.52.0 | 1,096,477 | 1/25/2023 |
4.51.0 | 992,801 | 1/17/2023 |
4.50.0 | 604,739 | 1/5/2023 |
4.49.0 | 929,462 | 12/15/2022 |
4.48.0 | 1,255,318 | 11/23/2022 |
4.47.0 | 1,163,908 | 11/9/2022 |
4.46.0 | 650,078 | 11/2/2022 |
4.45.0 | 1,009,525 | 10/19/2022 |
4.44.0 | 391,185 | 10/12/2022 |
4.43.0 | 310,132 | 10/5/2022 |
4.42.0 | 538,884 | 9/28/2022 |
4.41.0 | 468,432 | 9/22/2022 |
4.40.0 | 428,946 | 9/14/2022 |
4.39.0 | 1,739,553 | 9/6/2022 |
4.38.0 | 372,917 | 8/31/2022 |
4.37.0 | 421,360 | 8/25/2022 |
4.36.0 | 1,860,008 | 8/12/2022 |
4.35.0 | 909,036 | 7/21/2022 |
4.34.0 | 3,792,005 | 7/6/2022 |
4.33.0 | 660,785 | 6/29/2022 |
4.32.0 | 410,239 | 6/21/2022 |
4.31.0 | 230,527 | 6/16/2022 |
4.30.0 | 411,616 | 6/8/2022 |
4.29.0 | 1,165,128 | 5/18/2022 |
4.28.0 | 468,889 | 5/11/2022 |
4.27.0 | 307,729 | 5/4/2022 |
4.26.0 | 139,963 | 4/29/2022 |
4.25.0 | 1,047,167 | 4/13/2022 |
4.24.0 | 337,294 | 4/5/2022 |
4.23.0 | 151,685 | 3/30/2022 |
4.22.0 | 414,246 | 3/22/2022 |
4.21.0 | 341,016 | 3/16/2022 |
4.20.0 | 232,303 | 3/9/2022 |
4.19.0 | 622,153 | 2/24/2022 |
4.18.0 | 632,076 | 2/10/2022 |
4.17.0 | 1,001,019 | 1/27/2022 |
4.16.0 | 306,948 | 1/19/2022 |
4.15.0 | 396,510 | 1/13/2022 |
4.14.0 | 900,554 | 1/5/2022 |
4.13.0 | 571,756 | 12/22/2021 |
4.12.0 | 269,257 | 12/15/2021 |
4.11.0 | 2,407,187 | 11/25/2021 |
4.10.0 | 662,327 | 11/11/2021 |
4.9.0 | 617,290 | 11/3/2021 |
4.8.0 | 164,177 | 10/28/2021 |
4.7.0 | 636,730 | 10/14/2021 |
4.6.0 | 1,293,749 | 9/23/2021 |
4.5.0 | 671,732 | 9/9/2021 |
4.4.0 | 281,686 | 9/2/2021 |
4.3.0 | 351,649 | 8/19/2021 |
4.2.0 | 686,794 | 8/12/2021 |
4.1.0 | 173,855 | 8/5/2021 |
4.0.0 | 540,481 | 7/23/2021 |
4.0.0-preview.7 | 15,983 | 6/18/2021 |
4.0.0-preview.6 | 14,879 | 6/7/2021 |
4.0.0-preview.5 | 8,070 | 5/21/2021 |
4.0.0-preview.4 | 14,993 | 5/7/2021 |
4.0.0-preview.3 | 10,319 | 4/22/2021 |
4.0.0-preview.2 | 11,122 | 4/1/2021 |
4.0.0-preview.1 | 23,203 | 3/17/2021 |
3.35.0 | 4,555,158 | 6/15/2021 |
3.34.0 | 362,299 | 6/10/2021 |
3.33.0 | 2,633,537 | 5/20/2021 |
3.32.0 | 430,301 | 5/12/2021 |
3.31.0 | 229,291 | 5/7/2021 |
3.30.0 | 788,536 | 4/20/2021 |
3.29.0 | 595,797 | 4/2/2021 |
3.28.0 | 284,687 | 3/25/2021 |
3.27.0 | 935,740 | 3/10/2021 |
3.26.0 | 335,181 | 3/4/2021 |
3.25.0 | 453,510 | 2/18/2021 |
3.24.0 | 466,251 | 2/10/2021 |
3.23.0 | 537,362 | 1/29/2021 |
3.22.0 | 526,075 | 1/20/2021 |
3.21.0 | 1,244,141 | 12/8/2020 |
3.20.0 | 1,140,808 | 11/19/2020 |
3.19.0 | 1,238,748 | 10/27/2020 |
3.18.0 | 556,115 | 10/14/2020 |
3.17.0 | 217,769 | 10/10/2020 |
3.16.0 | 241,002 | 10/7/2020 |
3.15.0 | 583,907 | 9/24/2020 |
3.14.0 | 225,965 | 9/15/2020 |
3.13.0 | 137,832 | 9/10/2020 |
3.12.0 | 882,160 | 8/26/2020 |
3.11.0 | 15,969 | 8/25/2020 |
3.10.0 | 152,795 | 8/18/2020 |
3.9.0 | 1,510,704 | 7/28/2020 |
3.8.0 | 1,163,500 | 6/16/2020 |
3.7.0 | 198,957 | 6/9/2020 |
3.6.0 | 664,361 | 5/21/2020 |
3.5.0 | 333,902 | 5/12/2020 |
3.4.0 | 218,703 | 5/1/2020 |
3.3.0 | 388,030 | 4/14/2020 |
3.2.0 | 125,785 | 4/7/2020 |
3.1.0 | 221,561 | 4/1/2020 |
3.0.1 | 361,550 | 3/18/2020 |
1.21.0 | 7,720,885 | 12/11/2019 |
1.20.0 | 708,121 | 11/6/2019 |
1.19.0 | 162,074 | 10/29/2019 |
1.18.0 | 298,561 | 10/15/2019 |
1.17.0 | 837,446 | 8/15/2019 |
1.16.0 | 696,828 | 7/2/2019 |
1.15.0 | 1,251,735 | 5/1/2019 |
1.14.0 | 1,470,272 | 3/25/2019 |
1.14.0-preview | 22,004 | 2/25/2019 |
1.13.0-preview | 27,130 | 12/18/2018 |
1.12.0 | 1,380,358 | 10/31/2018 |
1.11.0 | 303,926 | 9/19/2018 |
1.10.0 | 411,608 | 7/6/2018 |
1.9.0 | 1,705,202 | 5/3/2018 |
1.8.1 | 218,265 | 3/26/2018 |
1.7.0 | 194,977 | 12/14/2017 |
1.6.2 | 157,207 | 10/6/2017 |
1.6.1 | 2,997 | 10/5/2017 |
1.6.0 | 11,706 | 9/26/2017 |
1.5.1 | 75,574 | 8/24/2017 |
1.5.0 | 50,555 | 8/8/2017 |
1.4.0 | 248,984 | 6/12/2017 |
1.3.0 | 191,895 | 5/10/2017 |
1.2.1 | 104,339 | 2/13/2017 |
1.2.0 | 120,838 | 11/8/2016 |
1.1.1 | 115,951 | 9/27/2016 |
1.0.1 | 243,487 | 4/21/2016 |
1.0.0 | 12,304 | 3/30/2016 |
0.2.8-rc | 11,205 | 6/24/2015 |