You need to send a message in a Microsoft Teams channel that informs users of a new order in a sales system. After the users read the message, the users must click a button to acknowledge that they read the message.
What should you use?
You build a Microsoft Teams bot named Bot1 and publish Bot1 to Azure.
You need to make Bot1 available for testing. The solution must meet the following requirements:
* Ensure that Botl is accessible only via Teams.
* Limit access to Botl to specific users.
* Minimize administrative effort.
What should you do first in the Azure portal?
You need to publish build status messages to a Microsoft Teams channel.
Solution: You create an app that monitors the build pipeline and pushes the messages to the channel by using the Microsoft Graph API.
Does this meet the goal?
You need to build a Microsoft Teams app that will record Teams calls. What should you use?
You are building a Microsoft Office Add-in for Outlook that will use the Microsoft Graph REST API to retrieve a user's documents from a Microsoft SharePoint Online site.
What should the add-in provide to retrieve the documents on behalf of the user?
Get an access token.
Note: The Outlook REST APIs require a bearer token in the Authorization header. Typically, apps use OAuth2 flows to retrieve a token. However, add-ins can retrieve a token without implementing OAuth2 by using the new Office.context.mailbox.getCallbackTokenAsync method introduced in the Mailbox requirement set 1.5.
After your add-in has the access token, item ID, and REST API URL, it can either pass that information to a back-end service which calls the REST API, or it can call it directly using AJAX.
https://docs.microsoft.com/en-us/office/dev/add-ins/outlook/use-rest-api
Submit Cancel