Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How i can handle post requests in bot? #9

Open
chlenc opened this issue Nov 25, 2018 · 0 comments
Open

How i can handle post requests in bot? #9

chlenc opened this issue Nov 25, 2018 · 0 comments

Comments

@chlenc
Copy link

chlenc commented Nov 25, 2018

const bodyParser = require('body-parser');
const express = require('express');
const app = express();
app.use(bodyParser.json());
app.use("/viber/webhook", bot.middleware());
app.listen(port);
app.post("/", function (req, res) {
if (req.body.myRequest) {
console.log("success")
return res.sendStatus(200)
}
else {
//how handle viber request? } });`

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant