Skip to content

Commit 2ab5765

Browse files
committed
Update add-authentication.md
1 parent 0b4744c commit 2ab5765

1 file changed

Lines changed: 12 additions & 12 deletions

File tree

msteams-platform/bots/how-to/authentication/add-authentication.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: OAuth 2.0 Bot Authentication with Azure
33
description: Learn how to enable authentication using third-party provider to a bot app in Teams using Entra ID. Learn to create and register bot resource group and service plan.
44
ms.topic: how-to
55
ms.localizationpriority: high
6-
ms.date: 03/16/2026
6+
ms.date: 04/09/2026
77
---
88

99
# Add authentication to your Teams bot
@@ -16,7 +16,7 @@ See [OAuth 2 Simplified](https://aka.ms/oauth2-simplified) for a basic understan
1616

1717
In this article you'll learn:
1818

19-
- **How to create an authentication-enabled bot**. Use [cs-auth-sample][teams-auth-bot-cs] to handle user sign-in credentials and the generating the authentication token.
19+
- **How to create an authentication-enabled bot**. Use [cs-auth-sample][teams-bot-auth-quickstart-cs] to handle user sign-in credentials and the generating the authentication token.
2020
- **How to deploy the bot to Azure and associate it with an identity provider**. The provider issues a token based on user sign-in credentials. The bot can use the token to access resources, such as a mail service, which require authentication.
2121
- **How to integrate the bot within Microsoft Teams**. Once the bot is integrated, you can sign in and exchange messages with it in a chat.
2222

@@ -30,9 +30,9 @@ In this article you'll learn:
3030

3131
| Sample |
3232
|:---|
33-
| **Bot authentication** in [cs-auth-sample][teams-auth-bot-cs] |
34-
| **Bot authentication** in [js-auth-sample][teams-auth-bot-js] |
35-
| **Bot authentication** in [py-auth-sample][teams-auth-bot-py] |
33+
| **Bot Auth Quickstart** in [cs-auth-sample][teams-bot-auth-quickstart-cs] |
34+
| **Bot Auth Quickstart** in [js-auth-sample][teams-bot-auth-quickstart-js] |
35+
| **Bot Auth Quickstart** in [py-auth-sample][teams-bot-auth-quickstart-py] |
3636

3737
## Create the resource group
3838

@@ -283,7 +283,7 @@ With the preliminary settings done, let's focus on the creation of the bot to us
283283

284284
# [C#/.NET](#tab/dotnet)
285285

286-
1. Clone [cs-auth-sample][teams-auth-bot-cs].
286+
1. Clone [cs-auth-sample][teams-bot-auth-quickstart-cs].
287287
1. Open Visual Studio.
288288
1. From the toolbar, select **File > Open > Project/Solution** and open the bot project.
289289
1. In C#, Update **appsettings.json** as follows:
@@ -312,7 +312,7 @@ With the preliminary settings done, let's focus on the creation of the bot to us
312312

313313
# [JavaScript](#tab/node-js)
314314

315-
1. Clone [node-auth-sample][teams-auth-bot-js].
315+
1. Clone [node-auth-sample][teams-bot-auth-quickstart-js].
316316
1. In a console, go to the project: </br></br>
317317
`cd samples/TeamsSDK/bot-auth-quickstart/nodejs/bot-auth-quickstart`
318318
1. Install modules</br></br>
@@ -338,7 +338,7 @@ With the preliminary settings done, let's focus on the creation of the bot to us
338338

339339
# [Python](#tab/python)
340340

341-
1. Clone [py-auth-sample][teams-auth-bot-py] from the GitHub repository.
341+
1. Clone [py-auth-sample][teams-bot-auth-quickstart-py] from the GitHub repository.
342342
1. Update **config.py**:
343343

344344
- Set `CONNECTION_NAME` to the name of the OAuth connection setting you added to your bot.
@@ -393,7 +393,7 @@ Alternatively, while in Visual Studio, you can follow these steps:
393393
## Test locally using Microsoft 365 Agents Playground
394394

395395
To test your bot locally, use the **Microsoft 365 Agents Playground**, which supports both agents and bots.
396-
For setup and testing instructions, see [Test your agent locally with the Microsoft 365 Agents Toolkit](/microsoft-365/agents-sdk/test-with-toolkit-project?tabs=windows).
396+
For setup and testing instructions, see [Test your agent locally with the Microsoft 365 Agents Playground](/microsoft-365/agents-sdk/test-with-toolkit-project?tabs=windows).
397397

398398
## Test the deployed bot
399399

@@ -615,8 +615,8 @@ This sample demonstrates how to implement Single Sign-On (SSO) authentication fo
615615

616616
[azure-portal]: https://ms.portal.azure.com
617617

618-
[teams-auth-bot-cs]: https://github.com/OfficeDev/Microsoft-Teams-Samples/tree/main/samples/TeamsSDK/bot-auth-quickstart/dotnet/bot-auth-quickstart
618+
[teams-bot-auth-quickstart-cs]: https://github.com/OfficeDev/Microsoft-Teams-Samples/tree/main/samples/TeamsSDK/bot-auth-quickstart/dotnet/bot-auth-quickstart
619619

620-
[teams-auth-bot-py]: https://github.com/OfficeDev/Microsoft-Teams-Samples/tree/main/samples/TeamsSDK/bot-auth-quickstart/python/bot-auth-quickstart
620+
[teams-bot-auth-quickstart-py]: https://github.com/OfficeDev/Microsoft-Teams-Samples/tree/main/samples/TeamsSDK/bot-auth-quickstart/python/bot-auth-quickstart
621621

622-
[teams-auth-bot-js]: https://github.com/OfficeDev/Microsoft-Teams-Samples/tree/main/samples/TeamsSDK/bot-auth-quickstart/nodejs/bot-auth-quickstart
622+
[teams-bot-auth-quickstart-js]: https://github.com/OfficeDev/Microsoft-Teams-Samples/tree/main/samples/TeamsSDK/bot-auth-quickstart/nodejs/bot-auth-quickstart

0 commit comments

Comments
 (0)