Microsoft Graph
Authorization
Client_Credentials
PerigeeApplication.ApplicationNoInit("Graph", (c) =>
{
var Graph = new GraphClient("tenant", "appID", "appSecret", c.GetLogger<Program>());
});var site = Graph.GetSiteByPath(new Uri(@"https://company.sharepoint.com/sites/dev1"));
var drive = Graph.GetSiteDrive(site.id);Authorization_Code + Refresh_Code
Full Demo
Graph Delegated Authorization + DataVerseSDK
Custom Graph Call
Last updated

