Questions tagged [facebook-messenger]

Facebook Messenger offers users an instant messaging platform that allows for text and voice communication. It is connected to Facebook's web-based Chat feature and utilizes the open-source MQTT protocol, enabling users to chat with friends on both mobile devices and the main website. This information was sourced from Wikipedia.

What are the steps for scheduling asynchronous tasks using Promises in Node.js?

As a beginner in Javascript, I am struggling to understand how to execute my functions sequentially. My goal is to use Promises to accomplish this task. I am currently following a tutorial on creating a chat bot for Facebook Messenger. Essentially, I want ...

Exploring selenium for automating tests on a Facebook Messenger bot. Tips for efficiently identifying user input and bot responses within the chat interface

We are currently working on automating the testing process of a Facebook Messenger bot by using Selenium. Our main challenge is locating the messenger's text box using XPath, but unfortunately, we have been unsuccessful so far. Below is the snippet of th ...

Error message in Fb Messenger: Quick replies data is not valid

I encountered the following error: { message: '(#100) Invalid data', type: 'OAuthException', code: 100, error_subcode: 2018032, fbtrace_id: 'H3qnFWWxE9u' } } while attempting to send this to Facebook m ...

The issue of Nodejs Messenger broadcast message functionality being inoperative

Trying to initiate a broadcast through my Facebook Messenger bot, I have implemented the following code: if (subscribe === true) { // Initiate HTTP request to Messenger Platform request({ "uri": "https://graph.facebook.com/v2.11/me/broadcast_messa ...

Steps for integrating a Facebook Messenger chatbot with a MongoDB database in order to submit requests and retrieve responses through conversations with the bot

I am currently working on integrating my Facebook Messenger chatbot with a MongoDB database. The chatbot I have created is a simple questionnaire chatbot that takes text inputs and displays buttons with options. When a user clicks on a button, it should ...