24
Building Bots on App Cloud Christophe Coenraets Developer Evangelist @ccoenraets

Building BOTS on App Cloud

Embed Size (px)

Citation preview

Page 1: Building BOTS on App Cloud

Building Botson App Cloud

Christophe CoenraetsDeveloper Evangelist

@ccoenraets

Page 2: Building BOTS on App Cloud

Forward-Looking StatementsStatement under the Private Securities Litigation Reform Act of 1995:This presentation may contain forward-looking statements that involve risks, uncertainties, and assumptions. If any such uncertainties materialize or if any of the assumptions proves incorrect, the results of salesforce.com, inc. could differ materially from the results expressed or implied by the forward-looking statements we make. All statements other than statements of historical fact could be deemed forward-looking, including any projections of product or service availability, subscriber growth, earnings, revenues, or other financial items and any statements regarding strategies or plans of management for future operations, statements of belief, any statements concerning new, planned, or upgraded services or technology developments and customer contracts or use of our services.The risks and uncertainties referred to above include – but are not limited to – risks associated with developing and delivering new functionality for our service, new products and services, our new business model, our past operating losses, possible fluctuations in our operating results and rate of growth, interruptions or delays in our Web hosting, breach of our security measures, the outcome of any litigation, risks associated with completed and any possible mergers and acquisitions, the immature market in which we operate, our relatively limited operating history, our ability to expand, retain, and motivate our employees and manage our growth, new releases of our service and successful customer deployment, our limited history reselling non-salesforce.com products, and utilization and selling to larger enterprise customers. Further information on potential factors that could affect the financial results of salesforce.com, inc. is included in our annual report on Form 10-K for the most recent fiscal year and in our quarterly report on Form 10-Q for the most recent fiscal quarter. These documents and others containing important disclosures are available on the SEC Filings section of the Investor Information section of our Web site.Any unreleased services or features referenced in this or other presentations, press releases or public statements are not currently available and may not be delivered on time or at all. Customers who purchase our services should make the purchase decisions based upon features that are currently available. Salesforce.com, inc. assumes no obligation and does not intend to update these forward-looking statements.

Page 3: Building BOTS on App Cloud

Agenda

• Bots• Slack• Messenger• Alexa

Page 4: Building BOTS on App Cloud

Weather?

64°

Page 5: Building BOTS on App Cloud

Employee Id?

7382

Page 6: Building BOTS on App Cloud

Trends

• Too many apps• Use Messaging Apps as the new platform• Use Bots as the new apps• Use Natural language (text or voice) as the new UX

Page 7: Building BOTS on App Cloud

What are Bots?

Bots allow you to access information or perform tasks:• Using natural language• Without switching context and loading a dedicated app

Page 8: Building BOTS on App Cloud

Bot Architecture

Service

AI

Formatter

Provider

Messaging App

Page 9: Building BOTS on App Cloud

Good Bot, Bad Bot

AI makes the difference:• Natural language processing• Image recognition• Sentiment analysis• Concept inference

Page 10: Building BOTS on App Cloud

Building Slack Bots

Page 11: Building BOTS on App Cloud

Incoming Webhook

Salesforce SlackPOST

Page 12: Building BOTS on App Cloud

Slash Commands

SalesforceSlackPOST

Heroku

AuthenticationCaching

/pipeline 3/contact forbes/case Send T-Shirts

Page 13: Building BOTS on App Cloud

Bots

SalesforceSlackSocket

Heroku

AuthenticationCaching

What are my top 3 opportunities?What's my employee idAm I eligible for a new laptop?

Page 14: Building BOTS on App Cloud

Authentication

Problem• Slack doesn't have built-in authentication for Salesforce• But passes the Slack user id with each requestSolution• Redirect user to Heroku app where user authenticates with Salesforce

(OAuth)• Heroku app keeps track of Slack user id / Salesforce token mappings• When Heroku app receives request from Slack user, it retrieves

Salesforce token for Slack user id, and executes request in Salesforce with that token

Page 15: Building BOTS on App Cloud

Authentication

SalesforceSlack Heroku

Slack User Id Salesforce Token

Page 16: Building BOTS on App Cloud

Building a Messenger Bot

Page 17: Building BOTS on App Cloud

Messenger Bot

SalesforceMessengerPOST

Heroku

AuthenticationCaching

Search houses in BostonRecent price changes

Page 18: Building BOTS on App Cloud

Generic Bot FrameworkProcessor

BotService

Handler

Formatter

ServiceProvider

Page 19: Building BOTS on App Cloud

Postbacks

Page 20: Building BOTS on App Cloud

Voice is the New UIBuilding an Alexa Bot

Page 21: Building BOTS on App Cloud

Messenger Bot

SalesforceAlexaPOST

Heroku

Alexa, ask Salesforce….What are my top 3 opportunities?What's my employee idAm I eligible for a new laptop?

Page 22: Building BOTS on App Cloud

http://dreamhouseapp.io

Page 23: Building BOTS on App Cloud

thank y u

Page 24: Building BOTS on App Cloud