From d981897426cac984cb02a9c45085c9a75e7f6a4e Mon Sep 17 00:00:00 2001 From: Alex Bogdanovski Date: Sun, 4 Aug 2024 11:30:38 +0300 Subject: [PATCH] updated Teams integration guide --- docs/teams.html | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/teams.html b/docs/teams.html index 195b6a24..2a454d61 100644 --- a/docs/teams.html +++ b/docs/teams.html @@ -347,6 +347,10 @@

Getting started

1. Visit the Azure Poral, navigate to "App registrations" and create a new multitenant app registration called "Scoold" with the "Web" type selected under "Redirect URI". + If you choose to create a single tenant app registration, you must specify your tenant ID and add + explicit API permissions to your app registration + (Channel.ReadBasic.All, ChannelMessage.Read.All, Group.Read.All, User.Read, email, offline_access, openid, profile). +

In the "Certificates and Secrets" tab, create a new client secret and take note of the secret key. Then go to the "Overview" tab and take note of the "Application (client) ID". Add these two values to your Scoold configuration file application.conf: @@ -355,6 +359,7 @@

Getting started

   scoold.ms_app_id = "{Client ID}"
   scoold.ms_secret = "{Client Secret}"
+  scoold.ms_tenant_id = "{Tenant ID}"