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 <noreply@anthropic.com>
This commit is contained in:
Aamir Jawaid 2026-05-01 00:43:12 +00:00 committed by Teknium
parent 09aba91766
commit a5d60f42ee

View File

@ -68,7 +68,7 @@ teams app create \
--endpoint "https://<your-tunnel-url>/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 <teamsAppId>
Open the **Install in Teams** link printed by `teams app create` in Step 3:
```
https://teams.microsoft.com/l/app/<teamsAppId>?installAppPackage=true&appTenantId=<tenantId>
```
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.
---