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?
Answer : A
You have a web app named App1 that users use to book corporate travel.
You need to integrate App1 and Microsoft Teams.
What are three ways to achieve this goal? Each correct answer presents a complete solution.
NOTE: Each correct selection is worth one point.
Answer : A, C, E
You build a Microsoft Teams app named App1.
You plan to publish App1 to the Teams store.
You need to complete the Microsoft 365 certification for App1. The solution must minimize administrative effort.
To which domains must you submit evidence?
Answer : F
You must submit evidence to all three domains in order to successfully complete the Microsoft 365 certification for App1.
You have a Microsoft Power Platform solution named Solution1 that contains a Microsoft Power Apps app named App1 and multiple Microsoft Power Automate flows.
You need to integrate Solution 1 and Microsoft Teams.
What are two ways to achieve this goal? Each correct answer presents a complete solution.
NOTE: Each correct selection is worth one point.
Answer : B, C
You are developing a sharePoint Framework (SPPx) web part. The web part will call a backend api that is secured by using Azure ad. The web part will be on a page that has many other web pairs
Which type of web part should you use to ensure that access to the API is exclusive to the web part?
Answer : B
You have a Microsoft Teams app that has several tabs. All the content of the app is currently in English.
You need to localize the app in French and Italian for all users.
Which three actions should you perform? Each correct answer presents part of the solution.
NOTE: Each correct selection is worth one point.
Answer : A, E, F
Consider the following factors to localize your Microsoft Teams app:
Localize your AppSource listing.
Localize strings in your app manifest.
Handle localized text submissions from your users.
All files added to your solution need to follow a specific format that includes {filename}.LanguageID.resx, where the language ID is the numeric value for that language. This format is necessary because the framework relies on the naming convention to identify which resource file should be used to associate the appropriate localized string to a label control.
https://docs.microsoft.com/en-us/microsoftteams/platform/concepts/build-and-test/apps-localization
You have a third-party API that is secured by using Azure Active Directory (Azure AD).
You need to configure a SharePoint Framework (SPFx) web part to consume the third-party API.
Which method should you use?
Answer : A
The AadHttpClient client object is useful for consuming any REST API. You can use it to consume Microsoft Graph or any other third-party (or first-party) REST API.
To consume any REST API using the AadHttpClient client object, create a new instance of the AadHttpClient type by calling the context.aadHttpClientFactory.getClient() method and providing the URI of the target service.
https://docs.microsoft.com/en-us/sharepoint/dev/spfx/use-aad-tutorial