page_type | description | products | languages | extensions | urlFragment | ||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
sample |
This sample illustrates how you can use Resource Specific Consent (RSC) to call Graph APIs. |
|
|
|
officedev-microsoft-teams-samples-graph-rsc-nodeJs |
This sample illustrates you can use Resource Specific Consent to call Graph API.
- NodeJS version v16.14.2 or Higher Version
- ngrok or equivalent tunnelling solution
- M365 developer account or access to a Teams account with the appropriate permissions to install an app.
-
Register your app with Microsoft identity platform via the Azure AD portal (AAD app registration in Azure portal)
- Your app must be registered in the Azure AD portal to integrate with the Microsoft identity platform and call Microsoft Graph APIs. See Register an application with the Microsoft identity platform.
-
Clone the repository
git clone https://github.com/OfficeDev/Microsoft-Teams-Samples.git
-
In a terminal, navigate to
samples/graph-rsc/nodejs
-
Install modules
npm install
-
Run ngrok - point to port 3978
ngrok http -host-header=rewrite 3978
-
Update the
.env
file configuration (ClientId, ClientSecret) for the bot to use the Microsoft App Id and App Password from the AAD app registration in your Azure Portal or from Bot Framework registration. (Note the App Password is referred to as the "client secret" in the azure portal and you can always create a new client secret anytime.) -
Run your bot at the command line:
npm start
-
This step is specific to Teams.
- Edit the
manifest.json
contained in theteamsManifest
folder to replace your Microsoft App Id (that was created when you registered your bot earlier) everywhere you see the place holder string<<app id>>
(depending on the scenario the Microsoft App Id may occur multiple times in themanifest.json
) [Your Ngrok Domain]
with base Url domain. E.g. if you are using ngrok it would behttps://1234.ngrok.io
then your domain-name will be1234.ngrok.io
.- Zip up the contents of the
teamsManifest
folder to create amanifest.zip
- Upload the
manifest.zip
to Teams (in the Apps view click "Upload a custom app")
- Edit the