fb-messenger-bot-api
fb-messenger-bot-api copied to clipboard
NodeJS Facebook Messenger API for bots to send messages and setup events to Facebook.
Hi, I'm currently using the api to integrate a custom made fulfillment for Dialogflow, when I try to send quick replies to the user I got the next error message:...
how to send messages with Message Tags? https://developers.facebook.com/docs/messenger-platform/send-messages/message-tags/
I've noticed that when creating the hash here: https://github.com/crisboarna/fb-messenger-bot-api/blob/5a2c6beec1353dcf32af0e5cf5078bb51609b787/src/validation/ValidateWebhook.ts#L79 You aren't updating with the payload body. Are you using this successfully in production for an older version of the API?...
https://github.com/crisboarna/fb-messenger-bot-api/blob/9de548c4b1462fe20bcca77fe74d542228cdebb0/src/util/Utils.ts#L26 OK so it looks like it won't be easy to simply update the API version in version as a config param because some of the methods have changed. Is...
I should note that I'm loving this library and will be jumping in to contribute and send PRs soon. Thanks for publishing it! I've noticed that in 'Setting Persistent Menu'...
I send a quick replies as below ``` await client.sendQuickReplyMessage("id_here", "test", [ { id: "1", title: "test", payload: "test" } ]); ``` the response from facebook is 400 bad request...