Graph SDK
8 TopicsMicrosoft Hack Together: Microsoft Graph and .NET 1st - 15th March
Hack Together is a virtual hackathon to get started building apps with Microsoft Graph and .NET. In this hackathon, you will kick-start learning how to build apps with Microsoft Graph – the API to access data and insights from Microsoft 365, and develop apps based on some of the most popular Microsoft Graph scenarios. You’ll also have a chance to win exciting prizes and meet Microsoft Graph and .NET Product Group Leaders, Cloud Advocates, MVPs and Student Ambassadors.12KViews2likes0CommentsVisualizing Top GitHub Programming Languages in Excel with Microsoft Graph .NET SDK
Have you ever thought about going through all your GitHub Repositories, taking note of the languages used, aggregating them and visualizing it on Excel? Well, that is what this post is all about except you don’t have to do it manually in a mundane way.9.4KViews1like0CommentsGet started with Microsoft Graph .NET SDK! - March 2nd 4PM GMT
Hack Together is a hackathon for beginners to get started building apps with Microsoft Graph and .NET. In this hackathon, you will kick-start learning how to build apps with Microsoft Graph and develop apps based on the given Top Microsoft Graph Scenarios, for a chance to win exciting prizes.2.4KViews0likes0CommentsWhat's next join the community! - Hack Together with MS Graph SDK and .NET - March 15th 4PM GMT
In this final week of Hack Together, we’ll host a live. Last week, we continued to hack together and helped each other on GitHub Discussions of our repository. We also hosted “Ask the experts/Get to know Microsoft Graph team!” session on Reactors to address commonly asked questions and answer the questions from the live audience.1.8KViews0likes0CommentsWould appreciate help understanding what I am doing wrong in this syntax
What I am trying to do is to get only the activities "Add user" and "Disable account" from Audit Logs using the Get-mgAuditLogDirectoryAudit cmdlt, and that happened in last 60 minutes. Below is what I am using: $currentDateTime = Get-Date $startDateTime = $currentDateTime.AddMinutes(-60).ToUniversalTime() Get-MgAuditLogDirectoryAudit -filter "activityDisplayName eq 'Add user' and ActivityDateTime ge $startDateTime" But it throws error. I am still a noob at PS so I am not able to figure out what I am doing wrong here. Am I using the wrong method to query things that happened in last 60 minutes? Would appreciate any guidance here.669Views0likes3CommentsGraph API getAsync() in C#
If I use graph in a console application I get the information that I request. Such as test = await graphClient.Users.GetAsync(); If I try this in a WebMethod in the code behind of a page or in an .asmx, it never returns with the data. I know this has been mentioned before in many forums, but I did not have issues in V1.0 of the SDK. When I try to use V5+ I can't seem to get the information back. Any ideas on overcoming the issue? Any help would be great.99Views0likes1Comment