page_type | description | products | languages | extensions | urlFragment | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
sample |
Sample which demonstrates an Office 365 Connector which generates and sends notifications for teams channel. |
|
|
|
officedev-microsoft-teams-samples-connector-todo-notification-csharp |
This application simulates a real task management system and allows users to create and view tasks. The content is randomly generated to simulate how notification can be sent into Microsoft Teams channel using connector.
- Connectors
The minimum prerequisites to run this sample are:
-
The latest update of Visual Studio. You can download the community version here for free.
-
An Office 365 account with access to Microsoft Teams, with sideloading enabled.
-
.NET Core SDK version 6.0.
determine dotnet version
dotnet --version
-
Ngrok (For local environment testing) Latest (any other tunneling software can also be used)
-
Teams Microsoft Teams is installed and you have an account
Note: some features in the sample require that you using Public Developer Preview mode in Microsoft Teams.
Note these instructions are for running the sample on your local machine.
-
Run ngrok - point to port 3978
ngrok http 3978 --host-header="localhost:3978"
-
Clone the repository
git clone https://github.com/OfficeDev/Microsoft-Teams-Samples.git
-
If you are using Visual Studio
- Launch Visual Studio
- File -> Open Folder
- Navigate to
samples/connector-todo-notification/csharp
folder - Select
TeamsToDoAppConnector.sln
solution file
Note The main connector code is found here:
- ConnectorController.cs -
Setup
&Save
actions - TaskController.cs -
Create
&Update
actions
- Configure your own connector :
Note:The below gif file shows a simple implementation of a connector registration implementation. It also sends a connector card to the registered connector via a process triggered "externally".
-
Register a new connector in the Connector Developer Portal
-
Fill in all the basic details such as name, logo, descriptions etc. for the new connector.
-
For the configuration page, you'll use our sample code's setup endpoint:
https://[BASE_URI]/connector/setup
-
For Valid domains, make enter your domain's http or https URL, e.g. XXXXXXXX.ngrok-free.app.
-
Enable the action on connector card by selecting the Yes radio button and enter the update endpoint:
https://[BASE_URI]/Task/Update
-
Click on Save. After the save completes, you will see your connector id.
-
In the Web.config file, set the
configuration.appSettings.Base_Uri
variable to the ngrok https forwarding url from the above. -
In Visual Studio, click the play button.
-
Now you can sideload your app package and test your new connector.
-
Once the connector is configured, you will get a notification in Team channel with link to the
Task Manager application
. -
Go to Task Manager portal and click on Create New and enter the task details and Save.
-
You will see the MessageCard in the registered Teams channel.
-
You can try the actionable buttons available on the message card.
-
This step is specific to Teams.
-
Edit the
manifest.json
contained in theapp manifest
folder to replace yourConnectorId
field in~/app manifest/manifest.json
file with your ConnectorId inconnectors
section. -
Edit the
manifest.json
forvalidDomains
. if you are using ngrok it would behttps://1234.ngrok-free.app
then your domain-name will be1234.ngrok-free.app
.Example :
"connectors": [ { "connectorId": "<<CONNECTOR_ID>>", "configurationUrl": "https://<<VALID-DOMAIN>>/Connector/Setup" } ]
-
Zip up the contents of the
app manifest
folder to create amanifest.zip
(Make sure that zip file does not contains any subfolder otherwise you will get error while uploading your .zip package) -
Upload the
manifest.zip
to Teams (In Teams Apps/Manage your apps click "Upload an app". Browse to and Open the .zip file. At the next dialog, click the Add button.) -
Add the app to personal/team/groupChat scope (Supported scopes)
-
Connector added successfully in Team's channel
Task manager portal => Create new task
Task manager portal => Task Details
Task manager portal => Task List
- For more information on developing apps for Microsoft Teams, please review the Microsoft Teams developer documentation.
- Configure the Teams ToDo Notification connector.
- For more information about getting started with Teams, please review the following resources:
- Review Getting Started with Teams
- Review Getting Started with Bot Framework
- Review Testing your bot with Teams