Questions tagged [facebook-chatbot]

Chatbots provide personalized, interactive communication akin to talking to a human customer service or sales representative, but at a bigger scale and cheaper than call centers.

Setup

For this integration, you will need the following:

  • Facebook App: The Facebook App contains the settings. This is where you will set up your webhook, retrieve your page access token and submit your app for approval.

  • Facebook Page: A Facebook Page will be used as the identity of your bot. When people chat with your bot, they will see the Page name and the Page profile picture.

  • Webhook URL: We use secure callbacks in order to send you messaging events. These will be sent to your webhook.

Complete Guide

336 questions
0
votes
1 answer

I can't catch action in new intent

I am building my Bot on the Facebook platform, my code is pushed to the Heroku platform and from there the Bot will react to what I have programmed. However, recently I want to add a new intent to my Agent and write code to record action in the…
0
votes
0 answers

"Get Started" button not working in Facebook Page

I recently setup the "Get Started" button using the following POST method using Postman: https://graph.facebook.com/v2.6/me/messenger_profile?access_token= With the raw text: { "get_started": {"payload": ""} } It…
0
votes
1 answer

Automatically subscribe pages to messenger webhook

I am working on a messenger platform that uses a messenger webhook to receive messages, and the Graph API to send messages. I currently need to go into my app settings and choose to subscribe pages that I already own. I am wondering how I can…
Joe Fioti
  • 421
  • 4
  • 15
0
votes
1 answer

Exit Private Mode to Log In Please open a regular browsing window to log in. You can also continue as a guest to chat with this business

Why it is not possible to open in some computer browser - chrome and Microsoft edge to chat with facebook chat plugin on website. When clicking on Log into Messenger - got this error. "Exit Private Mode to Log In Please open a regular browsing…
0
votes
1 answer

Very slow http post requests in python

I have created a python script which collects json data from facebook graph api and check for user job_title information. By using this script, I am notifying users to update their job_title via chatbot but this process takes too much time to send…
user14907810
0
votes
1 answer

Chatbot Python in Messenger - Requests

I am making a chatbot that i want to do a survey. How can i do several requests in order to send a question(Q1) and get answer(A1) and after it get's the right answer to make Q2 and so on. I was thinking something like: bot_send = "Q1: From 1 to 10…
LaSanton
  • 127
  • 9
0
votes
1 answer

dialogflow quick reply for Facebook client

When I'm trying to send a response from Node app to Dialogflow using webhook for Facebook messenger client. Trying to send a quick reply to the Facebook client, however, it is not working and getting the bellow error. Error: Reply string required by…
0
votes
1 answer

how to make text bold in Facebook Messenger bot

I want to make some text bold in Facebook Messenger, I know adding text will make text bold. I have been using this before. Look like Facebook has done some updates recently when I add (asterisk)text(asterisk), it repeated the first two letters of…
0
votes
1 answer

How can I handle non-text messages with Dialogflow?

I'm building a chatbot with Facebook Messenger and Google Dialogflow. In messenger there is a commonly used sticker (a big blue thumbs up) which is basically a picture. For now the chatbot cant recognize the stickers url or id. Could anyone help me?
0
votes
1 answer

Dialogflow inline can't count after open webhook on q2

I try to count the result of the conversation between chatbot and user in Inline Editor( Java Script ), if the answer is somehting like "YES" count will be increase by 1 or Else do somthing or nothing at all but the webhook either return Error…
0
votes
0 answers

Attempting to create a Chatbot using IBM Watson Assistant and Facebook Messenger

My friends and I are trying to create a chatbot using IBM Watson Assistant and integrating it with Facebook Messenger as platform to host the chatbot. Our intention is to extract the text and image data that is inputted in the chatbot. Since the…
0
votes
1 answer

Is it possible to control facebook chatbot externally?

I want to develop a chatbot for a few Facebook pages(which will deploy in 5 pages). I want to control all the chatbot externally from the outside admin panel. Like I want to send a message from my admin panel to a page bot or I want to reply on a…
sakib
  • 29
  • 6
0
votes
1 answer

POST: 500 Internal Server Error from Messenger Bot in laravel

I setup my Webhok by Ngrok URL for my Facebook page, and I applied all of the requirements for the Messenger Platform, but when I send the messages to my Facebook page I encounter the following error: POST /Facebook_Messenger_Token 500 Internal…
user13708250
0
votes
1 answer

DialogFlow v2 Error: [ResourceName error] Path '' does not match template

I have made a couple of functions that help me change the context in DialogFlow. For some reason, the context is changed as it should, but only one time, and when I look at my logs, is see this error message. (node:4)…
0
votes
1 answer

How to validate parameters of dialogflow from Node.js

I have a node.js backend connected to dialogflow to make a chatbot, and I can send answers, read inputs from users. Sometimes I need to validate some parameters as the IDCARD number. Well, I can retrieve a message to the user saying that the ID…