Guest User

Untitled

a guest
May 22nd, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. var app = express();
  2. app.use(myParser.json({extended : true}));
  3. app.post('/', function (req, res) {...}
  4. https.createServer(options, app).listen(443);
  5.  
  6. const app = dialogflow({
  7. clientId: CLIENT_ID,
  8. })
  9. app.intent('Default Welcome Intent', conv => {
  10. conv.ask(new SignIn('To get your account details'))
  11. })
  12. ...
Add Comment
Please, Sign In to add comment