Receive back messages via webhook
Hello Nur When the phone to which the message is sent returns a reply Can we receive this messages back via webhook ?
Thanks Doron
I have a plan to make a tutorial about it, but currently still finding the time.
Thanks
+1 - follow for tutorial -
Hellow I hope it helps
1 - create a config.json file { "port":8000, "webhook":{ "enabled":true, "path":"http://localhost/webhook-wa/index.php" } }
2 - insert into app.js
client.on('message', msg => { console.log(msg); if (config.webhook.enabled) { console.log(msg); axios.post(config.webhook.path, { msg }) } });
Hellow I hope it helps
1 - create a config.json file { "port":8000, "webhook":{ "enabled":true, "path":"http://localhost/webhook-wa/index.php" } }
2 - insert into app.js
client.on('message', msg => { console.log(msg); if (config.webhook.enabled) { console.log(msg); axios.post(config.webhook.path, { msg }) } });
can i see the php code?