Tony

Results 36 comments of Tony

Not sure I fully understand your question, but the following comes to mind: ```js // file 1: for the server import express from 'express'; const app = express(); app.listen(3000, ()...

Marking this as completed. @RyzorBent, feel free to reopen if need be 😊

Hi @nyandika, Thanks for the PR! This is a great idea; I think one of the things that stood out to me was the `build` command which cleans the directory,...

I looked at the official docs and there doesn't seem to be such an api for querying this: https://developers.facebook.com/docs/whatsapp/cloud-api/guides I may be wrong, please feel free to point me to...

Ah, I see your point. Currently, we are ignoring the `statuses` events when it's received, which is why you don't get the error via the library. We only publish new...

Glad you solved it! @jkupovic

Hi @alfonsusac, It seems that your tests are trying to access the server via port 80 instead of port 3000, ie `127.0.0.1:80`, which is why the tests timeout since the...

Hi @alfonsusac, Thanks for this PR. I'm away from my PC and unable to review at the moment. I will review as soon as I can. Apologies for the inconvenience....

Very sorry @amit-onappr, I didn't see your messages. @amit-onappr, @techpet: I see the problem: currently, the `on` event subscribes to all bots instead of a specific bot. When I first...

You can now use the following functionality to remove a listener for a specific bot: ```js (async () => { const bot = createBot('from', 'token'); await bot.startExpressServer({ webhookVerifyToken: 'xx' });...