Microsoft Graph API basic app in C#

14,182

You can start with some of the QuickStarts https://developer.microsoft.com/en-us/graph/quick-start For example, you start with ASP.NET MVC quickstart and then expand it with additional controllers that would handle listing emails and contacts. There is quite good SDK for .NET that you can use in your apps - it will make your development easier. The SDK enables you to write quite nice async calls instead of calling the API directly and composing your REST queries. For example, to retrieve messages in user's mailbox you would make a call like

graphServiceClient.Me.Messages.Request().GetAsync();

It might be helpful to take some ideas from my demo app that I use for conferences - it is based on some Graph Labs https://github.com/panjkov/Office365PlannerTask Take a look at Groups and Tasks controllers, as well as corresponding data repository classes - there are methods to retrieve particular collections, as well to retrieve specific items.

Share:
14,182
Carlos Pereira
Author by

Carlos Pereira

Updated on June 07, 2022

Comments

  • Carlos Pereira
    Carlos Pereira almost 2 years

    I want to develop a basic C# application that makes use of Microsoft Graph API to retrieve all user emails and contacts.

    How would I approach this to implement it from scratch on Visual Studio?

    I tried to add a method to do so in the provided sample, without success.