Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DotNet] Add details to README in certificate samples #421

Closed
wants to merge 17 commits into from
Closed
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Bot Framework v4 bot authentication using Certificate

This bot has been created using [Bot Framework](https://dev.botframework.com/), is shows how to use the bot authentication capabilities of Azure Bot Service. In this sample, we use a local or KeyVault certificate to create the Bot Framework Authentication.
This bot has been created using [Bot Framework](https://dev.botframework.com/), it shows how to use the bot authentication capabilities of Azure Bot Service. In this sample, we use a local or KeyVault certificate to create the Bot Framework Authentication.

## Interacting with the bot

Expand Down Expand Up @@ -164,6 +164,11 @@ An SSL/TLS certificate is a digital object that allows systems to verify identit

![Certificate Reading](Images/KeyVault/CertificateReading.png)
JhontSouth marked this conversation as resolved.
Show resolved Hide resolved

7. In the current sample context, log into Azure to obtain the default credentials by executing the following command.
```
az login
```

- Run the bot from a terminal or from Visual Studio:

A) From a terminal, navigate to `samples/csharp_dotnetcore/84.bot-authentication-certificate`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Bot Framework v4 bot authentication using Subject Name/Issuer

This bot has been created using Bot Framework, is shows how to use the bot authentication capabilities of Azure Bot Service. In this sample, we use a local or KeyVault certificate and the MSAL Subject Name/Issuer configuration to create the Bot Framework Authentication.
This bot has been created using Bot Framework, it shows how to use the bot authentication capabilities of Azure Bot Service. In this sample, we use a local or KeyVault certificate and the MSAL Subject Name/Issuer configuration to create the Bot Framework Authentication.
>NOTE: Microsoft's first-party resources are required to test this sample.
JhontSouth marked this conversation as resolved.
Show resolved Hide resolved

## Interacting with the bot
Expand Down Expand Up @@ -146,6 +146,11 @@ Certificate Subject Name and Issuer (SNI) based authentication is currently avai

![Certificate Reading](Images/KeyVault/CertificateReading.png)

5. In the current sample context, log into Azure to obtain the default credentials by executing the following command.
```
az login
```

- Run the bot from a terminal or from Visual Studio:

A) From a terminal, navigate to `samples/csharp_dotnetcore/85.bot-authentication-sn`
Expand Down
Loading