Trying to create a Teams call using the Graph API, but the Calls.Initiate.All
is required.
In the Graph explorer I see no means to grant application permissions as delegated permissions are not supported. Is there a way to grant this permission in the explorer or must this be done programmatically? If so how?
1
votes
1 Answers
0
votes
Calls.Initiate.All
is needed for POST /app/calls
method, not Get
method.
Since Create call only supports Application rather than Delegated permission and this permission is not listed in Microsoft Graph Explorer, you can choose to use Postman or Restlet or other 3rd-party to test it by configuring Application permission in app registered in Azure Portal.
You could grant admin-consent on Azure portal.
And then you could use client credentials flow to get the access token.
You could use this token to Create call.