From a5d60f42ee74e3be77f814ec97f8ab2b8e441708 Mon Sep 17 00:00:00 2001 From: Aamir Jawaid Date: Fri, 1 May 2026 00:43:12 +0000 Subject: [PATCH] docs(teams): fix CLI install tag and Step 6 install flow - Keep @preview tag for teams CLI - Step 3: note client secret won't be shown again - Step 6: use the install link printed by teams app create instead of a separate CLI command Co-Authored-By: Claude Sonnet 4.6 --- website/docs/user-guide/messaging/teams.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/website/docs/user-guide/messaging/teams.md b/website/docs/user-guide/messaging/teams.md index c77ac7d9..a409ef60 100644 --- a/website/docs/user-guide/messaging/teams.md +++ b/website/docs/user-guide/messaging/teams.md @@ -68,7 +68,7 @@ teams app create \ --endpoint "https:///api/messages" ``` -The CLI outputs your `CLIENT_ID`, `CLIENT_SECRET`, and `TENANT_ID`. Save them — you'll need all three. +The CLI outputs your `CLIENT_ID`, `CLIENT_SECRET`, and `TENANT_ID`, plus an install link for Step 6. Save the client secret — it won't be shown again. --- @@ -111,11 +111,13 @@ Look for: ## Step 6: Install the App in Teams -```bash -teams app install --id +Open the **Install in Teams** link printed by `teams app create` in Step 3: + +``` +https://teams.microsoft.com/l/app/?installAppPackage=true&appTenantId= ``` -The `teamsAppId` was printed by `teams app create` in Step 3. After installing, open Microsoft Teams and send a direct message to your bot — it's ready. +After installing, open Microsoft Teams and send a direct message to your bot — it's ready. ---