-
-
Save humannus/045bc66653494d33d9fee5ec754c7149 to your computer and use it in GitHub Desktop.
Example of setting attributes with webhooks in new visual builder
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
const express = require('express'); | |
const bodyParser = require('body-parser'); | |
const app = express().use(bodyParser.json()); // creates http server | |
const token = 'TOKEN'; // type here your verification token | |
app.get('/', (req, res) => { | |
// check if verification token is correct | |
if (req.query.token !== token) { | |
return res.sendStatus(401); | |
} | |
// return challenge | |
return res.end(req.query.challenge); | |
}); | |
app.post('/', (req, res) => { | |
// check if verification token is correct | |
if (req.query.token !== token) { | |
return res.sendStatus(401); | |
} | |
// print request body | |
console.log(req.body); | |
// return responses and actions | |
const data = { | |
// return responses | |
responses: [ | |
{ | |
"type": "text", | |
"message": `You are now a subscriber of our newsletter!` | |
} | |
], | |
// return attributes | |
attributes: { | |
signedUpForNewsletter: 'yes' | |
} | |
}; | |
res.json(data); | |
}); | |
app.listen(3000, () => console.log('[ChatBot] Webhook is listening')); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment