Skip to content

Latest commit

 

History

History
 
 
page_type products languages title description extensions urlFragment
sample
office-teams
office
office-365
csharp
Microsoft Teams C# Helloworld Sample
Microsoft Teams "Hello world" application for .NET/C#
contentType platforms createdDate
samples
CSS
10/19/2022 10:02:21 PM
officedev-microsoft-teams-samples-app-hello-world-csharp

Microsoft Teams hello world sample app.

  • Microsoft Teams hello world sample app.

Interaction with app

HelloTabGif

Prerequisites

Setup

1. Setup for Bot

  • Register a bot with Azure Bot Service, following the instructions here.

  • Ensure that you've enabled the Teams Channel

  • While registering the bot, use https://<your_ngrok_url>/api/messages as the messaging endpoint.

    NOTE: When you create your bot you will create an App ID and App password - make sure you keep these for later.

2. Setup NGROK

  1. Run ngrok - point to port 5000

    # ngrok http -host-header=rewrite 5000

3. Setup for code

  • Clone the repository

    git clone https://github.com/OfficeDev/Microsoft-Teams-Samples.git

Run the bot from a terminal or from Visual Studio:

A) From a terminal, navigate to Microsoft.Teams.Samples.HelloWorld.Web

# run the bot
dotnet run

B) Or from Visual Studio

  • Launch Visual Studio
  • File -> Open -> Project/Solution
  • Navigate to Microsoft.Teams.Samples.HelloWorld.Web folder
  • Select Microsoft.Teams.Samples.HelloWorld.Web.csproj file
  • Press F5 to run the project

4. Setup Manifest for Teams

  • This step is specific to Teams.
  1. Modify the manifest.json in the /Manifest folder and replace the following details:
  • {{Microsoft-App-Id}} with Application id generated from Step 1
  • {{domain-name}} with base Url domain. E.g. if you are using ngrok it would be 1234.ngrok.io

Note: If you want to test your app across multi hub like: Outlook/Office.com, please update the manifest.json in the /Manifest_Hub folder with the required values.

  1. Zip the contents of Manifest or Manifest_Hub folder into a manifest.zip.

  2. Modify the /appsettings.json and fill in the following details:

  • {{Microsoft-App-Id}} - Generated from Step 1 is the application app id
  • {{ Microsoft-App-Password}} - Generated from Step 1, also referred to as Client secret
  • {{ Application Base Url }} - Your application's base url. E.g. https://12345.ngrok.io if you are using ngrok.
  1. 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 ./Manifest folder, select the zip folder, and choose Open.
    • Select Add in the pop-up dialog box. Your app is uploaded to Teams.

Running the sample

Install App:

InstallApp

Welcome UI:

HelloTab

Outlook on the web

  • To view your app in Outlook on the web.

  • Go to Outlook on the weband sign in using your dev tenant account.

On the side bar, select More Apps. Your sideloaded app title appears among your installed apps

InstallOutlook

Select your app icon to launch and preview your app running in Outlook on the web

AppOutlook

Note: Similarly, you can test your application in the Outlook desktop app as well.

Office on the web

  • To preview your app running in Office on the web.

  • Log into office.com with test tenant credentials

Select the Apps icon on the side bar. Your sideloaded app title appears among your installed apps

InstallOffice

Select your app icon to launch your app in Office on the web

AppOffice

Note: Similarly, you can test your application in the Office 365 desktop app as well.

Deploy the bot to Azure

To learn more about deploying a bot to Azure, see Deploy your bot to Azure for a complete list of deployment instructions.

Further reading