Publishing to Your Organization
Follow the below steps to make the application available to all users inside your organization.
Find Your Azure AD Application ID:
Go to the Azure portal.
Navigate to Azure Active Directory > App registrations.
Find and click on the name of your application.
On the app's Overview page, copy the Application (client) ID. This is the value you'll need.
Edit the Manifest in the Developer Portal:
Navigate to the Teams Developer Portal and click on Apps.
Select your application from the list.
From the left-hand menu, select App package. This opens a code editor view of your manifest.json file.
Paste the below JSON block inside the main object:
Crucially, replace both instances of YOUR_AZURE_APP_ID with the actual Application (client) ID you copied from the Azure portal.
Click the Save button above the editor to apply your changes.
"webApplicationInfo": { "id": "YOUR_AZURE_APP_ID", "resource": "api://YOUR_AZURE_APP_ID" }
Publish the Application:
From the left-hand menu in the Developer Portal, select Publish.
Click on the Publish to your org option. This submits the app to your Teams administrator for approval.
Once the app is approved by an admin, your users can install it and begin to chat with the bot.
Last updated