SlideShare a Scribd company logo
1 of 49
Download to read offline
M O D E R N W O R K P L A C E
INTÉGREZ VOS
APPLICATIONS MÉTIERS
ET CHATBOTS DANS
MICROSOFT TEAMS
Guillaume Meyer
Email : gmeyer@eryem.com
Twitter : @guillaumemeyer
Web : www.eryem.com
Aka « Mr Chatbot »
AGENDA
WHAT IS TEAMS ?
TEAMS APP PLATFORM
DEMO : PACKAGE YOUR APP
CHATBOT COMPONENTS & SERVICES
DEMO : CREATE YOUR OWN CHATBOT
HOW TO FAIL YOUR CHATBOT PROJECT
Only 16 hours after its
launch…
Everybody
has a plan
until they get
punched in
the face…
Mike Tyson
AGENDA
WHAT IS TEAMS ?
TEAMS APP PLATFORM
DEMO : PACKAGE YOUR APP
CHATBOT COMPONENTS & SERVICES
DEMO : CREATE YOUR OWN CHATBOT
HOW TO FAIL YOUR CHATBOT PROJECT
> UNDERSTANDING THE PLATFORM
Extensible platform
Build apps with a rich set of capabilities to enable these higher-performing teams
https://msdn.microsoft.com/en-us/microsoft-teams/
Teams Administrative Settings
▪ Turn on/off Microsoft Teams for your organization
▪ General tenant-level settings (org chart)
▪ Teams & Channel (create, delete, etc.)
▪ Calls & Meetings (you can choose if users can use
video and screen sharing during calls and meetings)
▪ Messaging (turn on or turn off media content such as
animated images, memes, and stickers)
▪ Allow Tabs extensions
▪ Enable Bots
▪ Enable Connectors
▪ + Groups Administration settings
▪ + SharePoint Online Administration settings
Microsoft Teams Getting Started Guide for IT Admins :
https://support.office.com/en-us/article/Microsoft-Teams-Getting-Started-Guide-for-IT-
Admins-e7b992dc-de27-4303-8973-7a1ca8ad7cfb
Behind a Microsoft Team
▪ When a new team is created, a new Office 365
Group is also created, including the
associated group SharePoint site, mailbox, and
OneNote notebook.
▪ If a team is activated on an existing group,
then the existing site, mailbox, and notebook
are used in place.
▪ For each new team, a single channel named
General is also created, along with the
associated SharePoint folder and OneNote
notebook section.
▪ Can insert additional tabs connected to other
services as Planner, Power BI, Team Services,
etc.
1Team=1Office365Group
SharePoint site
Mailbox
OneNote
notebook
core services
+ additional services
AGENDA
WHAT IS TEAMS ?
TEAMS APP PLATFORM
DEMO : PACKAGE YOUR APP
CHATBOT COMPONENTS & SERVICES
DEMO : CREATE YOUR OWN CHATBOT
HOW TO FAIL YOUR CHATBOT PROJECT
> EXTENSIBILITY OPTIONS
Reach your users in their chats, channels, notifications, and personal workspace
Available now
Bots
Help users get
tasks done in
conversations
Connectors
Post rich updates
to channels
Tabs
Surface rich
content within
Teams
Office
Store
Drive engagement
by submitting
your app to the
Office Store
Actionable
Messages
Add rich
interaction to your
connector cards
Activity
Feed
Engage users
via feed
notifications
Compose
Extensions
Allow users to query
and share rich cards
in conversations
Available in Developer Preview
Rich surface area for your app
As simple as hosting your existing
web app
Team productivity: within channels
Personal productivity: app flyout
Your services, experience, & users
Push rich interactive cards
into channels
Users can take quick actions like
comment, select options, set a date
Uses incoming webhook API
Fully supported in both Teams
and Outlook
Notify users personally via the
activity feed
Same API as sending bot messages
Deep link straight into tabs
Bots make it easy for users to interact with
your app in Team conversations or 1:1
Built using Microsoft Bot Framework
Complete tasks via basic commands, menu
or natural language
Rich Microsoft Teams features, e.g.
✓ Input menus
✓ Dynamic message updates
✓ Integrate with tabs
Personalize Teams Compose box with
your App & Services content
Users can query and insert your app
content into conversations
Example: Bug details from VSTS
Example: Sales opportunities from CRM
You can reuse services you built for
Bots or Tabs
Microsoft Teams Apps
• With a single package, deliver one or more capabilities to end users, in
contexts that make sense in your experience
Single App definition – manifest.json
Single package (.ZIP) used for Sideloading or Office Store
submission
Channel Tabs
• Team account list
• Target / metrics
dashboard
Connectors
• Simple push
notification from
other tools
Notifications
• Flag important
action items
Channel Bots
• Channel
notifications of wins
/ losses
• In-group
opportunity queries
Compose Extensions
• Quick way to send links
to opportunities
Personal Tabs
• Filtered account list
• Personal dashboard
Personal Bots
• Personal queries
AGENDA
WHAT IS TEAMS ?
TEAMS APP PLATFORM
DEMO : PACKAGE YOUR APP
CHATBOT COMPONENTS & SERVICES
DEMO : CREATE YOUR OWN CHATBOT
HOW TO FAIL YOUR CHATBOT PROJECT
> FROM SAMPLE TO REAL WORLD
https://msdn.microsoft.com/en-us/microsoft-teams/samples
https://github.com/OfficeDev/generator-teams
Microsoft Teams
App
manifest.json
Icon-20x20.png
Icon-96x96.png
Microsoft Azure
Web App
Express web server (node.js)
/index.html
/tou.html
/privacy.html
/igniteTab.html
/igniteConfig.html
/igniteRemove.html
/aboutIgniteBot.html
/igniteAlertsConnector.html
/api/messages
/api/connector/connect
/api/connector/ping
>> Toolchain : VS Code / Node / NPM / Yeoman / Gulp / Ngrok
AGENDA
WHAT IS TEAMS ?
TEAMS APP PLATFORM
DEMO : PACKAGE YOUR APP
CHATBOT COMPONENTS & SERVICES
DEMO : CREATE YOUR OWN CHATBOT
HOW TO FAIL YOUR CHATBOT PROJECT
> THE BASICS
Bot Connector
Bot Connector
Bot Connector
Bot Framework
Bot Connector
Bot Framework
Bot Connector
Azure Bot Service
Notice : Azure Bot Service is Preview Service
• Intelligent, serverless bot service
• Start quickly with built-in templates
• Reach your users on multiple channels
• No server management or patching needed
• Scale out automatically
• Pay only for what you use
Bot Connector
Azure Bot Service
Bot Connector
Cognitive Services
Emotion
Speaker
Recognition
Speech
Custom
Recognition
Computer
Vision
Face
Video
Linguistic Analysis
Language
Understanding
Bing Spell Check
Entity Linking
Knowledge
Exploration
Academic
Knowledge
Bing
Image Search
Bing
Video Search
Bing
Web Search
WebLM
Text Analytics Recommendations
Bing
Autosuggest
Bing
News Search
Translator
Content
Moderator
QnA Maker
Bot Connector
Cognitive Services
Emotion
Speaker
Recognition
Speech
Custom
Recognition
Computer
Vision
Face
Video
Linguistic Analysis
Language
Understanding
Bing Spell Check
Entity Linking
Knowledge
Exploration
Academic
Knowledge
Bing
Image Search
Bing
Video Search
Bing
Web Search
WebLM
Text Analytics Recommendations
Bing
Autosuggest
Bing
News Search
Translator
Content
Moderator
QnA Maker
AGENDA
WHAT IS TEAMS ?
TEAMS APP PLATFORM
DEMO : PACKAGE YOUR APP
CHATBOT COMPONENTS & SERVICES
DEMO : CREATE YOUR OWN CHATBOT
HOW TO FAIL YOUR CHATBOT PROJECT
> REFERENCE SOLUTION
https://docs.microsoft.com/en-us/bot-framework/nodejs/bot-builder-nodejs-samples
https://github.com/Microsoft/BotBuilder-Samples/tree/master/Node/demo-ContosoFlowers
https://github.com/OfficeDev/generator-teams
AGENDA
WHAT IS TEAMS ?
TEAMS APP PLATFORM
DEMO : PACKAGE YOUR APP
CHATBOT COMPONENTS & SERVICES
DEMO : CREATE YOUR OWN CHATBOT
HOW TO FAIL YOUR CHATBOT PROJECT > TIPS FROM THE TRENCHES…
You’re not human ! Admit it !
From one bot to another…
Performance monitoring & diagnosis…
Azure App Insights
Analytics : Ibex Dashboard
Custom Analytics Dashboard for Microsoft Bot Framework http://aka.ms/ibex
>> Complexity :
1. Standard Bot Analytics
2. Power BI
3. Ibex Dashboard
Guillaume Meyer
Email : gmeyer@eryem.com
Twitter : @guillaumemeyer

More Related Content

What's hot

Introduction to Force.com Canvas Apps
Introduction to Force.com Canvas AppsIntroduction to Force.com Canvas Apps
Introduction to Force.com Canvas AppsSalesforce Developers
 
Developing a Windows Presentation Foundation Application
Developing a Windows Presentation Foundation ApplicationDeveloping a Windows Presentation Foundation Application
Developing a Windows Presentation Foundation Applicationgoodfriday
 
2018-10-18 J2 6A - Quoi de neuf sur l'interopérabilité avec Microsoft Teams ?...
2018-10-18 J2 6A - Quoi de neuf sur l'interopérabilité avec Microsoft Teams ?...2018-10-18 J2 6A - Quoi de neuf sur l'interopérabilité avec Microsoft Teams ?...
2018-10-18 J2 6A - Quoi de neuf sur l'interopérabilité avec Microsoft Teams ?...Modern Workplace Conference Paris
 
ESPC Teams week Microsoft Teams & Bot Framework – a Developer’s Perspective
ESPC Teams week Microsoft Teams & Bot Framework – a Developer’s PerspectiveESPC Teams week Microsoft Teams & Bot Framework – a Developer’s Perspective
ESPC Teams week Microsoft Teams & Bot Framework – a Developer’s PerspectiveThomas Gölles
 
Making External Web Pages Interact With Visualforce
Making External Web Pages Interact With VisualforceMaking External Web Pages Interact With Visualforce
Making External Web Pages Interact With VisualforceSalesforce Developers
 
Visualforce & Force.com Canvas: Unlock your Web App inside of Salesforce.com ...
Visualforce & Force.com Canvas: Unlock your Web App inside of Salesforce.com ...Visualforce & Force.com Canvas: Unlock your Web App inside of Salesforce.com ...
Visualforce & Force.com Canvas: Unlock your Web App inside of Salesforce.com ...Salesforce Developers
 
Salesforce Developer Garage Seattle: Force.com Canvas
Salesforce Developer Garage Seattle: Force.com CanvasSalesforce Developer Garage Seattle: Force.com Canvas
Salesforce Developer Garage Seattle: Force.com CanvasSalesforce Developers
 
Seamless Authentication with Force.com Canvas
Seamless Authentication with Force.com CanvasSeamless Authentication with Force.com Canvas
Seamless Authentication with Force.com CanvasSalesforce Developers
 
How embed pdf in your blog
How embed pdf in your blogHow embed pdf in your blog
How embed pdf in your blogDeftPDF
 
Architecting WPF Applications
Architecting WPF ApplicationsArchitecting WPF Applications
Architecting WPF ApplicationsPaul Stovell
 
Top 100 wordpress plugins
Top 100 wordpress pluginsTop 100 wordpress plugins
Top 100 wordpress pluginsguz393
 
Jws masterclass progressive web apps
Jws masterclass progressive web appsJws masterclass progressive web apps
Jws masterclass progressive web appsAlexandre Marreiros
 
Tampa Bay WordPress Meetup - August 13 2014 - WordPress 4.0
Tampa Bay WordPress Meetup - August 13 2014 - WordPress 4.0Tampa Bay WordPress Meetup - August 13 2014 - WordPress 4.0
Tampa Bay WordPress Meetup - August 13 2014 - WordPress 4.0Oyster Bay Marauders LLC
 
Getting Acquainted with PhoneGap
Getting Acquainted with PhoneGapGetting Acquainted with PhoneGap
Getting Acquainted with PhoneGapJoseph Labrecque
 
Progressive Web Apps 101
Progressive Web Apps 101Progressive Web Apps 101
Progressive Web Apps 101Daniel Black
 
Progressive Web Apps - Up & Running
Progressive Web Apps - Up & RunningProgressive Web Apps - Up & Running
Progressive Web Apps - Up & RunningSuraj Kumar
 
The MSLGROUP guide to facebook updates
The MSLGROUP guide to facebook updatesThe MSLGROUP guide to facebook updates
The MSLGROUP guide to facebook updatesMSLGROUPAsia
 

What's hot (20)

Introduction to Force.com Canvas Apps
Introduction to Force.com Canvas AppsIntroduction to Force.com Canvas Apps
Introduction to Force.com Canvas Apps
 
Developing a Windows Presentation Foundation Application
Developing a Windows Presentation Foundation ApplicationDeveloping a Windows Presentation Foundation Application
Developing a Windows Presentation Foundation Application
 
Progressive Web Apps
Progressive Web AppsProgressive Web Apps
Progressive Web Apps
 
2018-10-18 J2 6A - Quoi de neuf sur l'interopérabilité avec Microsoft Teams ?...
2018-10-18 J2 6A - Quoi de neuf sur l'interopérabilité avec Microsoft Teams ?...2018-10-18 J2 6A - Quoi de neuf sur l'interopérabilité avec Microsoft Teams ?...
2018-10-18 J2 6A - Quoi de neuf sur l'interopérabilité avec Microsoft Teams ?...
 
ESPC Teams week Microsoft Teams & Bot Framework – a Developer’s Perspective
ESPC Teams week Microsoft Teams & Bot Framework – a Developer’s PerspectiveESPC Teams week Microsoft Teams & Bot Framework – a Developer’s Perspective
ESPC Teams week Microsoft Teams & Bot Framework – a Developer’s Perspective
 
Making External Web Pages Interact With Visualforce
Making External Web Pages Interact With VisualforceMaking External Web Pages Interact With Visualforce
Making External Web Pages Interact With Visualforce
 
Visualforce & Force.com Canvas: Unlock your Web App inside of Salesforce.com ...
Visualforce & Force.com Canvas: Unlock your Web App inside of Salesforce.com ...Visualforce & Force.com Canvas: Unlock your Web App inside of Salesforce.com ...
Visualforce & Force.com Canvas: Unlock your Web App inside of Salesforce.com ...
 
Salesforce Developer Garage Seattle: Force.com Canvas
Salesforce Developer Garage Seattle: Force.com CanvasSalesforce Developer Garage Seattle: Force.com Canvas
Salesforce Developer Garage Seattle: Force.com Canvas
 
Seamless Authentication with Force.com Canvas
Seamless Authentication with Force.com CanvasSeamless Authentication with Force.com Canvas
Seamless Authentication with Force.com Canvas
 
New trends on web platform
New trends on web platformNew trends on web platform
New trends on web platform
 
How embed pdf in your blog
How embed pdf in your blogHow embed pdf in your blog
How embed pdf in your blog
 
Architecting WPF Applications
Architecting WPF ApplicationsArchitecting WPF Applications
Architecting WPF Applications
 
Top 100 wordpress plugins
Top 100 wordpress pluginsTop 100 wordpress plugins
Top 100 wordpress plugins
 
Jws masterclass progressive web apps
Jws masterclass progressive web appsJws masterclass progressive web apps
Jws masterclass progressive web apps
 
Tampa Bay WordPress Meetup - August 13 2014 - WordPress 4.0
Tampa Bay WordPress Meetup - August 13 2014 - WordPress 4.0Tampa Bay WordPress Meetup - August 13 2014 - WordPress 4.0
Tampa Bay WordPress Meetup - August 13 2014 - WordPress 4.0
 
An Overview Of Wpf
An Overview Of WpfAn Overview Of Wpf
An Overview Of Wpf
 
Getting Acquainted with PhoneGap
Getting Acquainted with PhoneGapGetting Acquainted with PhoneGap
Getting Acquainted with PhoneGap
 
Progressive Web Apps 101
Progressive Web Apps 101Progressive Web Apps 101
Progressive Web Apps 101
 
Progressive Web Apps - Up & Running
Progressive Web Apps - Up & RunningProgressive Web Apps - Up & Running
Progressive Web Apps - Up & Running
 
The MSLGROUP guide to facebook updates
The MSLGROUP guide to facebook updatesThe MSLGROUP guide to facebook updates
The MSLGROUP guide to facebook updates
 

Viewers also liked

nota lukisan persembahan senibina
nota lukisan persembahan senibinanota lukisan persembahan senibina
nota lukisan persembahan senibinaAishah Liman
 
Lukisan senibina
Lukisan senibinaLukisan senibina
Lukisan senibinastekkkt
 
Prinsip rekaan premis makanan
Prinsip rekaan premis makananPrinsip rekaan premis makanan
Prinsip rekaan premis makananAsif Yahya
 
Architectural Design 1 Lectures by Dr. Yasser Mahgoub - Lecture 1 Introduction
Architectural Design 1 Lectures by Dr. Yasser Mahgoub - Lecture 1 IntroductionArchitectural Design 1 Lectures by Dr. Yasser Mahgoub - Lecture 1 Introduction
Architectural Design 1 Lectures by Dr. Yasser Mahgoub - Lecture 1 IntroductionGalala University
 
Architectural Professional Practice - Design
Architectural Professional Practice - DesignArchitectural Professional Practice - Design
Architectural Professional Practice - DesignGalala University
 

Viewers also liked (8)

nota lukisan persembahan senibina
nota lukisan persembahan senibinanota lukisan persembahan senibina
nota lukisan persembahan senibina
 
01 intro(prehistoric)
01 intro(prehistoric)01 intro(prehistoric)
01 intro(prehistoric)
 
Lukisan senibina
Lukisan senibinaLukisan senibina
Lukisan senibina
 
The Architecture Profession
The Architecture ProfessionThe Architecture Profession
The Architecture Profession
 
Prinsip rekaan premis makanan
Prinsip rekaan premis makananPrinsip rekaan premis makanan
Prinsip rekaan premis makanan
 
Green building
Green buildingGreen building
Green building
 
Architectural Design 1 Lectures by Dr. Yasser Mahgoub - Lecture 1 Introduction
Architectural Design 1 Lectures by Dr. Yasser Mahgoub - Lecture 1 IntroductionArchitectural Design 1 Lectures by Dr. Yasser Mahgoub - Lecture 1 Introduction
Architectural Design 1 Lectures by Dr. Yasser Mahgoub - Lecture 1 Introduction
 
Architectural Professional Practice - Design
Architectural Professional Practice - DesignArchitectural Professional Practice - Design
Architectural Professional Practice - Design
 

Similar to Intégrez vos applications métiers dans Microsoft Teams

Building apps using azure for microsoft teams
Building apps using azure for microsoft teamsBuilding apps using azure for microsoft teams
Building apps using azure for microsoft teamsJenkins NS
 
Microsoft teams & bot framework - A developer's perspective
Microsoft teams & bot framework - A developer's perspectiveMicrosoft teams & bot framework - A developer's perspective
Microsoft teams & bot framework - A developer's perspectiveThomas Gölles
 
Build Modern Apps on Microsoft Teams-September 2018
Build Modern Apps on Microsoft Teams-September 2018Build Modern Apps on Microsoft Teams-September 2018
Build Modern Apps on Microsoft Teams-September 2018Microsoft 365 Developer
 
Office 365 Developer Bootcamp: Microsoft Teams
Office 365 Developer Bootcamp: Microsoft TeamsOffice 365 Developer Bootcamp: Microsoft Teams
Office 365 Developer Bootcamp: Microsoft TeamsDavid Schneider
 
Global office 365 developer bootcamp Slovenia 2018
Global office 365 developer bootcamp Slovenia 2018Global office 365 developer bootcamp Slovenia 2018
Global office 365 developer bootcamp Slovenia 2018Thomas Gölles
 
Microsoft Teams community call-February 2019
Microsoft Teams community call-February 2019Microsoft Teams community call-February 2019
Microsoft Teams community call-February 2019Microsoft 365 Developer
 
How DotNet, SharePoint, and Azure helps to build a Custom Web Application wi...
 How DotNet, SharePoint, and Azure helps to build a Custom Web Application wi... How DotNet, SharePoint, and Azure helps to build a Custom Web Application wi...
How DotNet, SharePoint, and Azure helps to build a Custom Web Application wi...Aimore Technologies
 
Build an app from scratch using teams app studio for ms teams
Build an app from scratch using teams app studio for ms teamsBuild an app from scratch using teams app studio for ms teams
Build an app from scratch using teams app studio for ms teamsJenkins NS
 
Thr2426 Build a bot for Microsoft Teams in 5 minutes
Thr2426 Build a bot for Microsoft Teams in 5 minutesThr2426 Build a bot for Microsoft Teams in 5 minutes
Thr2426 Build a bot for Microsoft Teams in 5 minutesTracy Van der Schyff
 
Teams community day april 2020 microsoft teams as app platform thomas goelles
Teams community day april 2020 microsoft teams as app platform   thomas goellesTeams community day april 2020 microsoft teams as app platform   thomas goelles
Teams community day april 2020 microsoft teams as app platform thomas goellesThomas Gölles
 
Bring your SharePoint apps to MS Teams
Bring your SharePoint apps to MS TeamsBring your SharePoint apps to MS Teams
Bring your SharePoint apps to MS TeamsNanddeep Nachan
 
Microsoft Teams - A developers perspective
Microsoft Teams - A developers perspectiveMicrosoft Teams - A developers perspective
Microsoft Teams - A developers perspectiveThomas Gölles
 
Practical Microsoft Bot Framework for Office 365 developers
Practical Microsoft Bot Framework for Office 365 developersPractical Microsoft Bot Framework for Office 365 developers
Practical Microsoft Bot Framework for Office 365 developersOlli Jääskeläinen
 
ESPC19 - Build Your First Microsoft Teams App Using SPFx
ESPC19 - Build Your First Microsoft Teams App Using SPFxESPC19 - Build Your First Microsoft Teams App Using SPFx
ESPC19 - Build Your First Microsoft Teams App Using SPFxSébastien Levert
 
M365 global developer bootcamp 2019 Intro to SPFx Version
M365 global developer bootcamp 2019 Intro to SPFx VersionM365 global developer bootcamp 2019 Intro to SPFx Version
M365 global developer bootcamp 2019 Intro to SPFx VersionThomas Daly
 
Build an Intelligent Bot (Node.js)
Build an Intelligent Bot (Node.js)Build an Intelligent Bot (Node.js)
Build an Intelligent Bot (Node.js)Sorin Peste
 
Chatbot technology- The innovative enterprise collaboration
Chatbot technology- The innovative enterprise collaborationChatbot technology- The innovative enterprise collaboration
Chatbot technology- The innovative enterprise collaborationKushan Lahiru Perera
 
Facebook Messenger Platform Framework
Facebook Messenger Platform FrameworkFacebook Messenger Platform Framework
Facebook Messenger Platform FrameworkRam Murat Sharma
 
The Digital Home: Developing Services and Applications for Media Center
The Digital Home: Developing Services and Applications for Media CenterThe Digital Home: Developing Services and Applications for Media Center
The Digital Home: Developing Services and Applications for Media Centergoodfriday
 

Similar to Intégrez vos applications métiers dans Microsoft Teams (20)

Building apps using azure for microsoft teams
Building apps using azure for microsoft teamsBuilding apps using azure for microsoft teams
Building apps using azure for microsoft teams
 
Microsoft teams & bot framework - A developer's perspective
Microsoft teams & bot framework - A developer's perspectiveMicrosoft teams & bot framework - A developer's perspective
Microsoft teams & bot framework - A developer's perspective
 
Build Modern Apps on Microsoft Teams-September 2018
Build Modern Apps on Microsoft Teams-September 2018Build Modern Apps on Microsoft Teams-September 2018
Build Modern Apps on Microsoft Teams-September 2018
 
Office 365 Developer Bootcamp: Microsoft Teams
Office 365 Developer Bootcamp: Microsoft TeamsOffice 365 Developer Bootcamp: Microsoft Teams
Office 365 Developer Bootcamp: Microsoft Teams
 
Global office 365 developer bootcamp Slovenia 2018
Global office 365 developer bootcamp Slovenia 2018Global office 365 developer bootcamp Slovenia 2018
Global office 365 developer bootcamp Slovenia 2018
 
Microsoft Teams community call-February 2019
Microsoft Teams community call-February 2019Microsoft Teams community call-February 2019
Microsoft Teams community call-February 2019
 
How DotNet, SharePoint, and Azure helps to build a Custom Web Application wi...
 How DotNet, SharePoint, and Azure helps to build a Custom Web Application wi... How DotNet, SharePoint, and Azure helps to build a Custom Web Application wi...
How DotNet, SharePoint, and Azure helps to build a Custom Web Application wi...
 
Developing apps for share point 2013
Developing apps for share point 2013Developing apps for share point 2013
Developing apps for share point 2013
 
Build an app from scratch using teams app studio for ms teams
Build an app from scratch using teams app studio for ms teamsBuild an app from scratch using teams app studio for ms teams
Build an app from scratch using teams app studio for ms teams
 
Thr2426 Build a bot for Microsoft Teams in 5 minutes
Thr2426 Build a bot for Microsoft Teams in 5 minutesThr2426 Build a bot for Microsoft Teams in 5 minutes
Thr2426 Build a bot for Microsoft Teams in 5 minutes
 
Teams community day april 2020 microsoft teams as app platform thomas goelles
Teams community day april 2020 microsoft teams as app platform   thomas goellesTeams community day april 2020 microsoft teams as app platform   thomas goelles
Teams community day april 2020 microsoft teams as app platform thomas goelles
 
Bring your SharePoint apps to MS Teams
Bring your SharePoint apps to MS TeamsBring your SharePoint apps to MS Teams
Bring your SharePoint apps to MS Teams
 
Microsoft Teams - A developers perspective
Microsoft Teams - A developers perspectiveMicrosoft Teams - A developers perspective
Microsoft Teams - A developers perspective
 
Practical Microsoft Bot Framework for Office 365 developers
Practical Microsoft Bot Framework for Office 365 developersPractical Microsoft Bot Framework for Office 365 developers
Practical Microsoft Bot Framework for Office 365 developers
 
ESPC19 - Build Your First Microsoft Teams App Using SPFx
ESPC19 - Build Your First Microsoft Teams App Using SPFxESPC19 - Build Your First Microsoft Teams App Using SPFx
ESPC19 - Build Your First Microsoft Teams App Using SPFx
 
M365 global developer bootcamp 2019 Intro to SPFx Version
M365 global developer bootcamp 2019 Intro to SPFx VersionM365 global developer bootcamp 2019 Intro to SPFx Version
M365 global developer bootcamp 2019 Intro to SPFx Version
 
Build an Intelligent Bot (Node.js)
Build an Intelligent Bot (Node.js)Build an Intelligent Bot (Node.js)
Build an Intelligent Bot (Node.js)
 
Chatbot technology- The innovative enterprise collaboration
Chatbot technology- The innovative enterprise collaborationChatbot technology- The innovative enterprise collaboration
Chatbot technology- The innovative enterprise collaboration
 
Facebook Messenger Platform Framework
Facebook Messenger Platform FrameworkFacebook Messenger Platform Framework
Facebook Messenger Platform Framework
 
The Digital Home: Developing Services and Applications for Media Center
The Digital Home: Developing Services and Applications for Media CenterThe Digital Home: Developing Services and Applications for Media Center
The Digital Home: Developing Services and Applications for Media Center
 

Recently uploaded

PHYSICS PROJECT BY MSC - NANOTECHNOLOGY
PHYSICS PROJECT BY MSC  - NANOTECHNOLOGYPHYSICS PROJECT BY MSC  - NANOTECHNOLOGY
PHYSICS PROJECT BY MSC - NANOTECHNOLOGYpruthirajnayak525
 
Genshin Impact PPT Template by EaTemp.pptx
Genshin Impact PPT Template by EaTemp.pptxGenshin Impact PPT Template by EaTemp.pptx
Genshin Impact PPT Template by EaTemp.pptxJohnree4
 
Early Modern Spain. All about this period
Early Modern Spain. All about this periodEarly Modern Spain. All about this period
Early Modern Spain. All about this periodSaraIsabelJimenez
 
The 3rd Intl. Workshop on NL-based Software Engineering
The 3rd Intl. Workshop on NL-based Software EngineeringThe 3rd Intl. Workshop on NL-based Software Engineering
The 3rd Intl. Workshop on NL-based Software EngineeringSebastiano Panichella
 
Gaps, Issues and Challenges in the Implementation of Mother Tongue Based-Mult...
Gaps, Issues and Challenges in the Implementation of Mother Tongue Based-Mult...Gaps, Issues and Challenges in the Implementation of Mother Tongue Based-Mult...
Gaps, Issues and Challenges in the Implementation of Mother Tongue Based-Mult...marjmae69
 
Anne Frank A Beacon of Hope amidst darkness ppt.pptx
Anne Frank A Beacon of Hope amidst darkness ppt.pptxAnne Frank A Beacon of Hope amidst darkness ppt.pptx
Anne Frank A Beacon of Hope amidst darkness ppt.pptxnoorehahmad
 
DGT @ CTAC 2024 Valencia: Most crucial invest to digitalisation_Sven Zoelle_v...
DGT @ CTAC 2024 Valencia: Most crucial invest to digitalisation_Sven Zoelle_v...DGT @ CTAC 2024 Valencia: Most crucial invest to digitalisation_Sven Zoelle_v...
DGT @ CTAC 2024 Valencia: Most crucial invest to digitalisation_Sven Zoelle_v...Henrik Hanke
 
Presentation for the Strategic Dialogue on the Future of Agriculture, Brussel...
Presentation for the Strategic Dialogue on the Future of Agriculture, Brussel...Presentation for the Strategic Dialogue on the Future of Agriculture, Brussel...
Presentation for the Strategic Dialogue on the Future of Agriculture, Brussel...Krijn Poppe
 
Dutch Power - 26 maart 2024 - Henk Kras - Circular Plastics
Dutch Power - 26 maart 2024 - Henk Kras - Circular PlasticsDutch Power - 26 maart 2024 - Henk Kras - Circular Plastics
Dutch Power - 26 maart 2024 - Henk Kras - Circular PlasticsDutch Power
 
Call Girls In Aerocity 🤳 Call Us +919599264170
Call Girls In Aerocity 🤳 Call Us +919599264170Call Girls In Aerocity 🤳 Call Us +919599264170
Call Girls In Aerocity 🤳 Call Us +919599264170Escort Service
 
THE COUNTRY WHO SOLVED THE WORLD_HOW CHINA LAUNCHED THE CIVILIZATION REVOLUTI...
THE COUNTRY WHO SOLVED THE WORLD_HOW CHINA LAUNCHED THE CIVILIZATION REVOLUTI...THE COUNTRY WHO SOLVED THE WORLD_HOW CHINA LAUNCHED THE CIVILIZATION REVOLUTI...
THE COUNTRY WHO SOLVED THE WORLD_HOW CHINA LAUNCHED THE CIVILIZATION REVOLUTI...漢銘 謝
 
Chizaram's Women Tech Makers Deck. .pptx
Chizaram's Women Tech Makers Deck.  .pptxChizaram's Women Tech Makers Deck.  .pptx
Chizaram's Women Tech Makers Deck. .pptxogubuikealex
 
The Ten Facts About People With Autism Presentation
The Ten Facts About People With Autism PresentationThe Ten Facts About People With Autism Presentation
The Ten Facts About People With Autism PresentationNathan Young
 
Mathan flower ppt.pptx slide orchids ✨🌸
Mathan flower ppt.pptx slide orchids ✨🌸Mathan flower ppt.pptx slide orchids ✨🌸
Mathan flower ppt.pptx slide orchids ✨🌸mathanramanathan2005
 
Event 4 Introduction to Open Source.pptx
Event 4 Introduction to Open Source.pptxEvent 4 Introduction to Open Source.pptx
Event 4 Introduction to Open Source.pptxaryanv1753
 
SaaStr Workshop Wednesday w/ Kyle Norton, Owner.com
SaaStr Workshop Wednesday w/ Kyle Norton, Owner.comSaaStr Workshop Wednesday w/ Kyle Norton, Owner.com
SaaStr Workshop Wednesday w/ Kyle Norton, Owner.comsaastr
 
Simulation-based Testing of Unmanned Aerial Vehicles with Aerialist
Simulation-based Testing of Unmanned Aerial Vehicles with AerialistSimulation-based Testing of Unmanned Aerial Vehicles with Aerialist
Simulation-based Testing of Unmanned Aerial Vehicles with AerialistSebastiano Panichella
 
Work Remotely with Confluence ACE 2.pptx
Work Remotely with Confluence ACE 2.pptxWork Remotely with Confluence ACE 2.pptx
Work Remotely with Confluence ACE 2.pptxmavinoikein
 
miladyskindiseases-200705210221 2.!!pptx
miladyskindiseases-200705210221 2.!!pptxmiladyskindiseases-200705210221 2.!!pptx
miladyskindiseases-200705210221 2.!!pptxCarrieButtitta
 
PAG-UNLAD NG EKONOMIYA na dapat isaalang alang sa pag-aaral.
PAG-UNLAD NG EKONOMIYA na dapat isaalang alang sa pag-aaral.PAG-UNLAD NG EKONOMIYA na dapat isaalang alang sa pag-aaral.
PAG-UNLAD NG EKONOMIYA na dapat isaalang alang sa pag-aaral.KathleenAnnCordero2
 

Recently uploaded (20)

PHYSICS PROJECT BY MSC - NANOTECHNOLOGY
PHYSICS PROJECT BY MSC  - NANOTECHNOLOGYPHYSICS PROJECT BY MSC  - NANOTECHNOLOGY
PHYSICS PROJECT BY MSC - NANOTECHNOLOGY
 
Genshin Impact PPT Template by EaTemp.pptx
Genshin Impact PPT Template by EaTemp.pptxGenshin Impact PPT Template by EaTemp.pptx
Genshin Impact PPT Template by EaTemp.pptx
 
Early Modern Spain. All about this period
Early Modern Spain. All about this periodEarly Modern Spain. All about this period
Early Modern Spain. All about this period
 
The 3rd Intl. Workshop on NL-based Software Engineering
The 3rd Intl. Workshop on NL-based Software EngineeringThe 3rd Intl. Workshop on NL-based Software Engineering
The 3rd Intl. Workshop on NL-based Software Engineering
 
Gaps, Issues and Challenges in the Implementation of Mother Tongue Based-Mult...
Gaps, Issues and Challenges in the Implementation of Mother Tongue Based-Mult...Gaps, Issues and Challenges in the Implementation of Mother Tongue Based-Mult...
Gaps, Issues and Challenges in the Implementation of Mother Tongue Based-Mult...
 
Anne Frank A Beacon of Hope amidst darkness ppt.pptx
Anne Frank A Beacon of Hope amidst darkness ppt.pptxAnne Frank A Beacon of Hope amidst darkness ppt.pptx
Anne Frank A Beacon of Hope amidst darkness ppt.pptx
 
DGT @ CTAC 2024 Valencia: Most crucial invest to digitalisation_Sven Zoelle_v...
DGT @ CTAC 2024 Valencia: Most crucial invest to digitalisation_Sven Zoelle_v...DGT @ CTAC 2024 Valencia: Most crucial invest to digitalisation_Sven Zoelle_v...
DGT @ CTAC 2024 Valencia: Most crucial invest to digitalisation_Sven Zoelle_v...
 
Presentation for the Strategic Dialogue on the Future of Agriculture, Brussel...
Presentation for the Strategic Dialogue on the Future of Agriculture, Brussel...Presentation for the Strategic Dialogue on the Future of Agriculture, Brussel...
Presentation for the Strategic Dialogue on the Future of Agriculture, Brussel...
 
Dutch Power - 26 maart 2024 - Henk Kras - Circular Plastics
Dutch Power - 26 maart 2024 - Henk Kras - Circular PlasticsDutch Power - 26 maart 2024 - Henk Kras - Circular Plastics
Dutch Power - 26 maart 2024 - Henk Kras - Circular Plastics
 
Call Girls In Aerocity 🤳 Call Us +919599264170
Call Girls In Aerocity 🤳 Call Us +919599264170Call Girls In Aerocity 🤳 Call Us +919599264170
Call Girls In Aerocity 🤳 Call Us +919599264170
 
THE COUNTRY WHO SOLVED THE WORLD_HOW CHINA LAUNCHED THE CIVILIZATION REVOLUTI...
THE COUNTRY WHO SOLVED THE WORLD_HOW CHINA LAUNCHED THE CIVILIZATION REVOLUTI...THE COUNTRY WHO SOLVED THE WORLD_HOW CHINA LAUNCHED THE CIVILIZATION REVOLUTI...
THE COUNTRY WHO SOLVED THE WORLD_HOW CHINA LAUNCHED THE CIVILIZATION REVOLUTI...
 
Chizaram's Women Tech Makers Deck. .pptx
Chizaram's Women Tech Makers Deck.  .pptxChizaram's Women Tech Makers Deck.  .pptx
Chizaram's Women Tech Makers Deck. .pptx
 
The Ten Facts About People With Autism Presentation
The Ten Facts About People With Autism PresentationThe Ten Facts About People With Autism Presentation
The Ten Facts About People With Autism Presentation
 
Mathan flower ppt.pptx slide orchids ✨🌸
Mathan flower ppt.pptx slide orchids ✨🌸Mathan flower ppt.pptx slide orchids ✨🌸
Mathan flower ppt.pptx slide orchids ✨🌸
 
Event 4 Introduction to Open Source.pptx
Event 4 Introduction to Open Source.pptxEvent 4 Introduction to Open Source.pptx
Event 4 Introduction to Open Source.pptx
 
SaaStr Workshop Wednesday w/ Kyle Norton, Owner.com
SaaStr Workshop Wednesday w/ Kyle Norton, Owner.comSaaStr Workshop Wednesday w/ Kyle Norton, Owner.com
SaaStr Workshop Wednesday w/ Kyle Norton, Owner.com
 
Simulation-based Testing of Unmanned Aerial Vehicles with Aerialist
Simulation-based Testing of Unmanned Aerial Vehicles with AerialistSimulation-based Testing of Unmanned Aerial Vehicles with Aerialist
Simulation-based Testing of Unmanned Aerial Vehicles with Aerialist
 
Work Remotely with Confluence ACE 2.pptx
Work Remotely with Confluence ACE 2.pptxWork Remotely with Confluence ACE 2.pptx
Work Remotely with Confluence ACE 2.pptx
 
miladyskindiseases-200705210221 2.!!pptx
miladyskindiseases-200705210221 2.!!pptxmiladyskindiseases-200705210221 2.!!pptx
miladyskindiseases-200705210221 2.!!pptx
 
PAG-UNLAD NG EKONOMIYA na dapat isaalang alang sa pag-aaral.
PAG-UNLAD NG EKONOMIYA na dapat isaalang alang sa pag-aaral.PAG-UNLAD NG EKONOMIYA na dapat isaalang alang sa pag-aaral.
PAG-UNLAD NG EKONOMIYA na dapat isaalang alang sa pag-aaral.
 

Intégrez vos applications métiers dans Microsoft Teams

  • 1. M O D E R N W O R K P L A C E INTÉGREZ VOS APPLICATIONS MÉTIERS ET CHATBOTS DANS MICROSOFT TEAMS
  • 2. Guillaume Meyer Email : gmeyer@eryem.com Twitter : @guillaumemeyer Web : www.eryem.com Aka « Mr Chatbot »
  • 3. AGENDA WHAT IS TEAMS ? TEAMS APP PLATFORM DEMO : PACKAGE YOUR APP CHATBOT COMPONENTS & SERVICES DEMO : CREATE YOUR OWN CHATBOT HOW TO FAIL YOUR CHATBOT PROJECT
  • 4.
  • 5.
  • 6. Only 16 hours after its launch…
  • 7.
  • 8. Everybody has a plan until they get punched in the face… Mike Tyson
  • 9. AGENDA WHAT IS TEAMS ? TEAMS APP PLATFORM DEMO : PACKAGE YOUR APP CHATBOT COMPONENTS & SERVICES DEMO : CREATE YOUR OWN CHATBOT HOW TO FAIL YOUR CHATBOT PROJECT > UNDERSTANDING THE PLATFORM
  • 10. Extensible platform Build apps with a rich set of capabilities to enable these higher-performing teams https://msdn.microsoft.com/en-us/microsoft-teams/
  • 11. Teams Administrative Settings ▪ Turn on/off Microsoft Teams for your organization ▪ General tenant-level settings (org chart) ▪ Teams & Channel (create, delete, etc.) ▪ Calls & Meetings (you can choose if users can use video and screen sharing during calls and meetings) ▪ Messaging (turn on or turn off media content such as animated images, memes, and stickers) ▪ Allow Tabs extensions ▪ Enable Bots ▪ Enable Connectors ▪ + Groups Administration settings ▪ + SharePoint Online Administration settings Microsoft Teams Getting Started Guide for IT Admins : https://support.office.com/en-us/article/Microsoft-Teams-Getting-Started-Guide-for-IT- Admins-e7b992dc-de27-4303-8973-7a1ca8ad7cfb
  • 12. Behind a Microsoft Team ▪ When a new team is created, a new Office 365 Group is also created, including the associated group SharePoint site, mailbox, and OneNote notebook. ▪ If a team is activated on an existing group, then the existing site, mailbox, and notebook are used in place. ▪ For each new team, a single channel named General is also created, along with the associated SharePoint folder and OneNote notebook section. ▪ Can insert additional tabs connected to other services as Planner, Power BI, Team Services, etc. 1Team=1Office365Group SharePoint site Mailbox OneNote notebook core services + additional services
  • 13. AGENDA WHAT IS TEAMS ? TEAMS APP PLATFORM DEMO : PACKAGE YOUR APP CHATBOT COMPONENTS & SERVICES DEMO : CREATE YOUR OWN CHATBOT HOW TO FAIL YOUR CHATBOT PROJECT > EXTENSIBILITY OPTIONS
  • 14. Reach your users in their chats, channels, notifications, and personal workspace Available now Bots Help users get tasks done in conversations Connectors Post rich updates to channels Tabs Surface rich content within Teams Office Store Drive engagement by submitting your app to the Office Store Actionable Messages Add rich interaction to your connector cards Activity Feed Engage users via feed notifications Compose Extensions Allow users to query and share rich cards in conversations Available in Developer Preview
  • 15. Rich surface area for your app As simple as hosting your existing web app Team productivity: within channels Personal productivity: app flyout Your services, experience, & users
  • 16. Push rich interactive cards into channels Users can take quick actions like comment, select options, set a date Uses incoming webhook API Fully supported in both Teams and Outlook
  • 17. Notify users personally via the activity feed Same API as sending bot messages Deep link straight into tabs
  • 18. Bots make it easy for users to interact with your app in Team conversations or 1:1 Built using Microsoft Bot Framework Complete tasks via basic commands, menu or natural language Rich Microsoft Teams features, e.g. ✓ Input menus ✓ Dynamic message updates ✓ Integrate with tabs
  • 19. Personalize Teams Compose box with your App & Services content Users can query and insert your app content into conversations Example: Bug details from VSTS Example: Sales opportunities from CRM You can reuse services you built for Bots or Tabs
  • 20. Microsoft Teams Apps • With a single package, deliver one or more capabilities to end users, in contexts that make sense in your experience Single App definition – manifest.json Single package (.ZIP) used for Sideloading or Office Store submission
  • 21. Channel Tabs • Team account list • Target / metrics dashboard Connectors • Simple push notification from other tools Notifications • Flag important action items Channel Bots • Channel notifications of wins / losses • In-group opportunity queries Compose Extensions • Quick way to send links to opportunities Personal Tabs • Filtered account list • Personal dashboard Personal Bots • Personal queries
  • 22. AGENDA WHAT IS TEAMS ? TEAMS APP PLATFORM DEMO : PACKAGE YOUR APP CHATBOT COMPONENTS & SERVICES DEMO : CREATE YOUR OWN CHATBOT HOW TO FAIL YOUR CHATBOT PROJECT > FROM SAMPLE TO REAL WORLD
  • 25. Microsoft Teams App manifest.json Icon-20x20.png Icon-96x96.png Microsoft Azure Web App Express web server (node.js) /index.html /tou.html /privacy.html /igniteTab.html /igniteConfig.html /igniteRemove.html /aboutIgniteBot.html /igniteAlertsConnector.html /api/messages /api/connector/connect /api/connector/ping >> Toolchain : VS Code / Node / NPM / Yeoman / Gulp / Ngrok
  • 26. AGENDA WHAT IS TEAMS ? TEAMS APP PLATFORM DEMO : PACKAGE YOUR APP CHATBOT COMPONENTS & SERVICES DEMO : CREATE YOUR OWN CHATBOT HOW TO FAIL YOUR CHATBOT PROJECT > THE BASICS
  • 27.
  • 29.
  • 32. Bot Connector Azure Bot Service Notice : Azure Bot Service is Preview Service • Intelligent, serverless bot service • Start quickly with built-in templates • Reach your users on multiple channels • No server management or patching needed • Scale out automatically • Pay only for what you use
  • 34.
  • 35. Bot Connector Cognitive Services Emotion Speaker Recognition Speech Custom Recognition Computer Vision Face Video Linguistic Analysis Language Understanding Bing Spell Check Entity Linking Knowledge Exploration Academic Knowledge Bing Image Search Bing Video Search Bing Web Search WebLM Text Analytics Recommendations Bing Autosuggest Bing News Search Translator Content Moderator QnA Maker
  • 36. Bot Connector Cognitive Services Emotion Speaker Recognition Speech Custom Recognition Computer Vision Face Video Linguistic Analysis Language Understanding Bing Spell Check Entity Linking Knowledge Exploration Academic Knowledge Bing Image Search Bing Video Search Bing Web Search WebLM Text Analytics Recommendations Bing Autosuggest Bing News Search Translator Content Moderator QnA Maker
  • 37. AGENDA WHAT IS TEAMS ? TEAMS APP PLATFORM DEMO : PACKAGE YOUR APP CHATBOT COMPONENTS & SERVICES DEMO : CREATE YOUR OWN CHATBOT HOW TO FAIL YOUR CHATBOT PROJECT > REFERENCE SOLUTION
  • 40. AGENDA WHAT IS TEAMS ? TEAMS APP PLATFORM DEMO : PACKAGE YOUR APP CHATBOT COMPONENTS & SERVICES DEMO : CREATE YOUR OWN CHATBOT HOW TO FAIL YOUR CHATBOT PROJECT > TIPS FROM THE TRENCHES…
  • 41. You’re not human ! Admit it !
  • 42.
  • 43.
  • 44. From one bot to another…
  • 45.
  • 46.
  • 47. Performance monitoring & diagnosis… Azure App Insights
  • 48. Analytics : Ibex Dashboard Custom Analytics Dashboard for Microsoft Bot Framework http://aka.ms/ibex >> Complexity : 1. Standard Bot Analytics 2. Power BI 3. Ibex Dashboard
  • 49. Guillaume Meyer Email : gmeyer@eryem.com Twitter : @guillaumemeyer