Skip to content
This repository has been archived by the owner on Nov 26, 2019. It is now read-only.

Channel Cisco

Jerome Houdan edited this page Jun 28, 2017 · 1 revision

Cisco

Setup your Cisco Spark account

Create your account

Go to Cisco Spark for Developers and sign up for an account. If you already have a Cisco Spark account, you can use the same credentials to login.

Cisco account

Create a bot

Click on My Apps in the header, then on the + button to create a new Bot. Fill in the Bot Creation form, and click on Add Bot to generate your Bot token.

Bot form

Get your credentials

You now have a brand new bot. Copy the token, you need it to create your Cisco channel. Cisco Spark

Start Connector in local

  • Clone and install Connector
$ git clone https://github.com/RecastAI/bot-connector.git
$ cd bot-connector
$ yarn install
$ yarn start-dev
  • Create your connector
$ curl -X POST "http://localhost:8080/connectors/" --data "url=connector_url"
  • Create your channel
$ curl -X  POST \
  --data "slug=YOUR_CHANNEL_SLUG" --data "token=YOUR_CISCO_TOKEN" --data "type=cisco" \
  "http://localhost:8080/connectors/:connector_id/channels"

Your bot

A small example of bot:

 import express from 'express'
 import bodyParser from 'body-parser'
 import request from 'superagent'
 
 const app = express()
 app.set('port', process.env.PORT || 5000)
 app.use(bodyParser.json())
 
 const config = { url: 'http://localhost:8080', connectorId: 'yourConnectorId' }
 
   /* Get the request from the connector */
 
 app.post('/', (req, res) => {
   const conversationId = req.body.message.conversation
   const messages = [{
     type: 'text',
     content: 'my first message',
   }]
 
   /* Send the message back to the connector */
   request.post(`${config.url}/connectors/${config.connectorId}/conversations/${conversationId}/messages`)
     .send({ messages, senderId: req.body.senderId })
     .end((err, res) => {
       if (err) {
         console.log(err)
       } else {
         console.log(res)
       }
     })
 })
 
 app.listen(app.get('port'), () => {
   console.log('Our bot is running on port', app.get('port'))
 })