Team Planner
3 TopicsPlanner App no longer showing Private/To Do tasks or Flagged Emails
I noticed that the Planner App in Microsoft Teams is no longer showing Private/To Do tasks or Flagged emails. This is true in both the Teams Desktop client as well as Teams for the Web. However, they do appear in the Planner app within the Mobile Teams app. I am on targeted release and have attached my version information. I confirmed they are still showing up for a user that is not on targeted release...so I assume there is an issue with the newest version of Teams. Does anyone else notice this?Unable to get planner details associated with a group
Hi All, I am trying to get Planner details for a group/team, below is my script. I have registered the app and it has all permissions: Group.Read.All Group.ReadWrite.All Tasks.Read Tasks.ReadWrite User.Read User.Read.All yet it keeps giving me error "You do not have the required permissions to access this item" $clientId = "[clientId]" $clientSecret = "[clientSecret]" $tenantName = "testtenant.onmicrosoft.com" $resource = https://graph.microsoft.com/ $groupId ="5a987e93-d3db-4fde-96d0-f1a60ac2bd58" $tokenBody = @{ Grant_Type = "client_credentials" Scope = https://graph.microsoft.com/.default Client_Id = $clientId Client_Secret = $clientSecret } $tokenResponse = Invoke-RestMethod -Uri https://login.microsoftonline.com/$TenantName/oauth2/v2.0/token -Method POST -Body $tokenBody Connect-MgGraph -AccessToken $tokenResponse.access_token Get-MgGroupPlannerPlan -GroupId $groupId I cannot define scope in the script using Connect-MgGraph -Scopes Can please anyone let me know if I am missing anything ? Thanks In Advance2.3KViews0likes3Comments