Access MS Graph Shared Calendars with a console application ?

Avadanei, Daniel 21 Reputation points
2022-10-17T09:54:21.36+00:00

I'm trying to acces the calendars that have been shared with a user using MS Graph sdk. I have a web app and the necessary permissions like Calendars.Read given. Using postman I manage to read the calendar of a user using https://login.microsoftonline.com/{app id}/oauth2/v2.0/authorize for authorization and then https://graph.microsoft.com/v1.0/users/{user}/calendar/events for reading calendar events. Everything works fine in postman, but I'm having issues to do the same thing using MSGraph framework. I tried using this example https://learn.microsoft.com/en-us/graph/sdks/choose-authentication-providers?tabs=CS#client-credentials-provider in order to replicate the postman calls in c# but I receive an error saying that

'Code: BadRequest /me request is only valid with delegated authentication flow'

when I used await graphClient.Me.Calendars.Request().GetAsync();

and

Access is denied. Check credentials and try again

when I used await graphClient.Users["example@ssss .com"].Calendars.Request().GetAsync();

From what I have read the first error with delegated authentication flow appears because I'm using application permissions model and I should be using delegated permissions in this context. The issue is that I don't know how to use ms graph library for delegated permissions model. The only examples that I found involves calling API directly, but I need to use the MS Graph library.

Microsoft Graph
Microsoft Graph
A Microsoft programmability model that exposes REST APIs and client libraries to access data on Microsoft 365 services.
12,854 questions
0 comments No comments
{count} votes

Accepted answer
  1. CarlZhao-MSFT 44,846 Reputation points
    2022-10-18T09:25:04.717+00:00

    Hi @Avadanei, Daniel

    Examples of use ms graph library for delegated permissions model are already provided in the document you shared, please refer to Authorization code provider and Username/password provider.

    var scopes = new[] { "User.Read" };  
      
    // Multi-tenant apps can use "common",  
    // single-tenant apps must use the tenant ID from the Azure portal  
    var tenantId = "common";  
      
    // Values from app registration  
    var clientId = "YOUR_CLIENT_ID";  
    var clientSecret = "YOUR_CLIENT_SECRET";  
      
    // For authorization code flow, the user signs into the Microsoft  
    // identity platform, and the browser is redirected back to your app  
    // with an authorization code in the query parameters  
    var authorizationCode = "AUTH_CODE_FROM_REDIRECT";  
      
    // using Azure.Identity;  
    var options = new TokenCredentialOptions  
    {  
        AuthorityHost = AzureAuthorityHosts.AzurePublicCloud  
    };  
      
    // https://learn.microsoft.com/dotnet/api/azure.identity.authorizationcodecredential  
    var authCodeCredential = new AuthorizationCodeCredential(  
        tenantId, clientId, clientSecret, authorizationCode, options);  
      
    var graphClient = new GraphServiceClient(authCodeCredential, scopes);  
    

    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.


1 additional answer

Sort by: Most helpful
  1. Vicky Kumar (Mindtree Consulting PVT LTD) 1,161 Reputation points Microsoft Employee
    2022-10-18T07:39:44.003+00:00

    For your error - 'Code: BadRequest /me request is only valid with delegated authentication flow'

    This is as per design, Client credential flow will generate the token on behalf the app itself, so in this scenario, users don't need to sign in first to generate the token stand for the user and then call the api.

    you should not use the /me endpoint, instead you should use /users/{userID}/calendar/getSchedule

    await graphClient.Users["abc@xyz .com"].Calendars.Request().GetAsync()

    For your another error - Access is denied. Check credentials and try again

    251502-image.png

    Please check the docs, to see common access denied issue - https://learn.microsoft.com/en-us/graph/resolve-auth-errors

    Hope this helps ,
    Thanks


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.