Skip to content

Latest commit

 

History

History

csharp

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
page_type description products languages extensions urlFragment
sample
Microsoft Teams tab sample app for demonstrating graph toolkit component
office-teams
office
office-365
csharp
contentType createdDate
samples
11-11-2021 23:30:17
officedev-microsoft-teams-samples-tab-graph-toolkit-csharp

Teams tab with microsoft graph toolkit

This is the demo app for Teams tab using miscrosoft graph toolkit

Login

agenda

people-picker

tasks

todo

person-card

person

Prerequisites

  • .NET Core SDK version 3.1

    determine dotnet version

    dotnet --version
  • Ngrok (For local environment testing) Latest (any other tunneling software can also be used)

    run ngrok locally

    ngrok http -host-header=rewrite 3978
  • NodeJS

  • M365 developer account or access to a Teams account with the appropriate permissions to install an app.

To try this sample

  1. Configuring MSAL2.0 Auth Provider
  • Register your app with Microsoft identity platform via the Azure AD portal
  • Your app must be registered in the Azure AD portal to integrate with the Microsoft identity platform. See Register an application with the Microsoft identity platform.
  • Click on Add a Platform in redirect URI section.
  • Select Single Page Application and add following URL <<base-url>>/tabauth
  • Save and register.
  • Once App is registerd copy the client_Id for your app and update in the app.
  1. Clone the repository

    git clone https://github.com/OfficeDev/Microsoft-Teams-Samples.git
  2. In a terminal, navigate to samples/tab-graph-toolkit/csharp

    change into project folder

    cd # TabGraphToolkit
  3. Install modules navigate to samples/tab-graph-toolkit/csharp/TabGraphToolkit/ClientApp

    npm install
  4. Update client_Id copied from step 1 in index.tsx file.

  5. Modify the manifest.json in the /appPackage folder and replace the following details:

  • {{Microsoft-App-Id}} with Application id generated from Step 1
  • {{base-URl}} with base Url domain. E.g. if you are using ngrok it would be 1234.ngrok.io
  1. Zip the contents of appPackage folder into a manifest.zip, and use the manifest.zip to deploy in app store or add to Teams using step 9.

  2. Run the bot from a terminal or from Visual Studio, choose option A or B.

    A) From a terminal

    # run the bot
    dotnet run

    B) Or from Visual Studio

    • Launch Visual Studio
    • File -> Open -> Project/Solution
    • Navigate to TabGraphToolkit folder
    • Select TabGraphToolkit.csproj file
    • Press F5 to run the project
  3. Upload the manifest.zip to Teams (in the Apps view click "Upload a custom app")

    • Go to Microsoft Teams. From the lower left corner, select Apps
    • From the lower left corner, choose Upload a custom App
    • Go to your project directory, the ./appPackage folder, select the zip folder, and choose Open.
    • Select Add in the pop-up dialog box. Your app is uploaded to Teams.

Features of this sample

Once you access the Tab within your app you will be able to see following microsoft-graph-toolkit component.

  • <mgt-login>

Login

  • <mgt-agenda>

agenda

  • <mgt-people-picker>

people-picker

  • <mgt-tasks>

tasks

  • <mgt-todo>

todo

  • <mgt-person-card>

person-card

  • <mgt-person>

person