active-directory-dotnet-graphapi-console
active-directory-dotnet-graphapi-console copied to clipboard
A .NET console application that performs various queries against the Azure AD Graph API using both user identities and application identities.
I was trying to update an user using this application, but I started receiving the exception saying Insufficient privileges to complete the operation, access_denied. {"odata.error":{"code":"Authorization_RequestDenied","message":{"lang":"en","value":"Insufficient privileges to complete the operation."}}}...
I have no success in setting extended property whatever I do. I have isolated the reproducible piece of code: ``` csharp public async Task CleanTest(string extName) { ExtensionProperty ep =...
Can't build solution as checked in. Get following error: This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information,...
The Readme.md file states, "updating a User's thumbnailPhoto". But I see no such thing in the code.
Is there a way, when logged in in app mode, to add a user to app? I tried the following and got an error: ``` var roleAssignment= new AppRoleAssignment() {...
I have updated the project for be able to use Visual Studio 2017 with Framework 4.5.2 and updated packages.
I did all the steps from samples description: registered an app, gave it Read Directory permission, put client secret in configuration along with other actual values etc. However, starting with...
Can't remove a user from a group, although add works fine. User oUser = FindUser(UserUPN); Group oGroup = FindGroup(GroupName); await RemoveUserFromGroup(oGroup, oUser);
Hi Guys, I am not sure if this is the right place for a query about Quota limit: what kinds of directory object will hit the quota limit. I have...
Have all right to do edits in azure. Only problem which I come into is I can't update an thumbnailphoto. This is the code I use: ``` var imageBytes =...