Skip to content

Commit

Permalink
add MicrosoftAppType
Browse files Browse the repository at this point in the history
  • Loading branch information
JhontSouth committed Jun 19, 2024
1 parent 343a725 commit 23e3e72
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
MicrosoftAppTenantId=
MicrosoftAppType=
MicrosoftAppId=
CertificateThumbprint=
KeyVaultName=
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ node --version
- MicrosoftAppId: App Id of your bot (gathered from the [Setup a Bot][#TrySample] step).
- CertificateThumbprint: Thumbprint of the certificate uploaded to the app registration.
- MicrosoftAppTenantId: Tenant Id to which your bot belongs (optional for MultiTenant apps).
- MicrosoftAppType: Type of the App (optional for MultiTenant apps).
2. Intall and configure [OpenSSL](https://www.openssl.org/source/) with the latest version
- Download the latest version source and add the folder to the [environment variables](https://www.java.com/en/download/help/path.html) path.
Expand Down Expand Up @@ -127,6 +128,7 @@ node --version
- MicrosoftAppId: App Id of your bot (gathered from the [Setup a Bot][#TrySample] step).
- CertificateThumbprint: Thumbprint of the certificate uploaded to the app registration.
- MicrosoftAppTenantId: Tenant Id to which your bot belongs (optional for MultiTenant apps).
- MicrosoftAppType: Type of the App (optional for MultiTenant apps).
2. Create a [KeyVault](https://learn.microsoft.com/en-us/azure/key-vault/general/quick-create-portal) resource.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@ const { AuthBot } = require('./authBot');
MicrosoftAppId: process.env.MicrosoftAppId,
CertificateThumbprint: process.env.CertificateThumbprint,
CertificatePrivateKey: certificateKey,
MicrosoftAppTenantId: process.env.MicrosoftAppTenantId
MicrosoftAppTenantId: process.env.MicrosoftAppTenantId,
MicrosoftAppType: process.env.MicrosoftAppType
});

// ---- Authenticate using local certificate
Expand Down

0 comments on commit 23e3e72

Please sign in to comment.