-
Notifications
You must be signed in to change notification settings - Fork 910
How to build multi tenant teams apps with new changes #1948
Copy link
Copy link
Open
Labels
Description
Hy teams after new changes how to build multi tenant apps
I put single tenant in azure bot but what to select in entra app so that any org can use it
also what should be in code
I am using this
createBotFrameworkAuthenticationFromConfiguration(
null,
new ConfigurationServiceClientCredentialFactory({
MicrosoftAppId: configService.get<string>('MICROSOFT_APP_ID'),
MicrosoftAppPassword: configService.get<string>(
'MICROSOFT_APP_PASSWORD',
),
MicrosoftAppTenantId: configService.get<string>(
'MICROSOFT_APP_TENANT_ID',
),
MicrosoftAppType: configService.get<string>('MICROSOFT_APP_TYPE'),
}),
),
what should we put here..can u help its becoming so confusing to understand new changes
Reactions are currently unavailable