page_type | description | products | languages | extensions | urlFragment | ||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
sample |
This sample demos a feature where user can join a team using QR code containing the team's id. |
|
|
|
officedev-microsoft-teams-samples-bot-join-team-using-qr-code-nodejs |
This sample demos a feature where user can join a team using QR code having team id.
User can generate a new QR code (contains team id information) and then scan the QR code to join the team.
Currently, Microsoft Teams support for QR or barcode scanner capability is only supported for mobile clients
- Type a message to get a card to generate the QR code.
- Select the team from dropdown list for which you want to generate the QR code and then click on 'Generate QR' button.
- Scan the generated QR code to join the team.
- Microsoft Teams is installed and you have an account (not a guest account)
- NodeJS
- ngrok or equivalent tunneling solution
- M365 developer account or access to a Teams account with the appropriate permissions to install an app.
Note these instructions are for running the sample on your local machine, the tunnelling solution is required because the Teams service needs to call into the bot.
a) In Azure portal, create a Azure Bot resource..
- Ensure that you've enabled the Teams Channel
b) Navigate to API Permissions, and make sure to add the follow permissions:
-
Select Add a permission
-
Select Microsoft Graph -> Delegated permissions.
- User.Read (enabled by default)
- Directory.AccessAsUser.All
- TeamMember.ReadWrite.All
-
Click on Add permissions.
-
Clone the repository
git clone https://github.com/OfficeDev/Microsoft-Teams-Samples.git
-
In a terminal, navigate to
samples/bot-join-team-using-qr-code/nodejs
-
Install node modules
Inside node js folder, open your local terminal and run the below command to install node modules. You can do the same in Visual Studio code terminal by opening the project in Visual Studio code.
npm install
-
Run ngrok - point to port 3978
ngrok http -host-header=rewrite 3978
-
Open the
.env
configuration file in your project folder (or in Visual Studio Code) and update the following details:
MicrosoftAppId
- It is the AppId created in step 1.a (Setup for Bot SSO)MicrosoftAppPassword
- It is referred to as the "client secret" in step 1.a (Setup for Bot SSO) and you can always create a new client secret anytimeConnectionName
- Generated from Step 1.a, is the name that we provide while adding OAuth connection setting in Azure Bot resource. Please follow Add authentication to bot to configure the connection.BaseUrl
with application base url. For e.g., your ngrok url.
-
Run your app
npm start
- Manually update the manifest.json
-
Edit the
manifest.json
contained in theappPackage/
folder to replace with your MicrosoftAppId (that was created in step1.a and is the same value of MicrosoftAppId in.env
file) everywhere you see the place holder string{MicrosoftAppId}
(depending on the scenario the Microsoft App Id may occur multiple times in themanifest.json
) -
Zip up the contents of the
appPackage/
folder to create amanifest.zip
-
Upload the
manifest.zip
to Teams (in the left-bottom Apps view, click "Upload a custom app")IMPORTANT: The manifest file in this app adds "token.botframework.com" to the list of
validDomains
. This must be included in any bot that uses the Bot Framework OAuth flow.
-
- Type a message to get a card to generate the QR code.
- Select the team from dropdown list for which you want to generate the QR code and then click on 'Generate QR' button.
- Scan the generated QR code to join the team.
To learn more about deploying a bot to Azure, see Deploy your bot to Azure for a complete list of deployment instructions.