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
2
votes
2 answers

Facebook Messenger Channel is not working with Microsoft Botframework

In Microsoft's Bot Framework, there is Facebook Messenger Channel. And according to the setup page, i followed everything and then have finished configuring things on both Bot Framework and Facebook App ends. Finished setting up Facebook Webhooks…
2
votes
2 answers

how to trace user reply to a specific chatbot message in node.js

I wonder how to catch a user reply to a specific chatbot question? I mean for example if the user asks the chatbot for the weather and the chatbot responds back by asking the user for in which city. I would then like to trace what the user responds…
2
votes
1 answer

IVR support on facebook messenger

I am working on facebook bot. Is IVR or TTS possible on messenger through bot by using any API or other things? I searched for it but was unable to find anything. Thanks in advance.
2
votes
1 answer

User session in facebook messenger bot

In normal web application we maintain session by sending UserID/sessionID/tokenID via cookie or as querystring parameter or in HTTP request in header. How can we have a session when creating a chatbot using facebook messenger? This will be helpful…
Arun Ghosh
  • 7,634
  • 1
  • 26
  • 38
2
votes
0 answers

how to test my facebook chatbot?

I am developing a chatbot for facebook messenger platform using wit.ai. It hard to find bags, I would like to test at least basic flows(conversations) of my bot. Does anyone know frameworks or tools for testing my chatbot?
2
votes
1 answer

Facebook chatbot post callback doesn't have the correct data structure in nodejs

I've implemented a webhook for a facebook chatbot with php using laravel and all works fine, when I message my bot I receive a post request with expected data structure and I manage to have all working well. Then I was trying to do the webhook…
António Quadrado
  • 1,307
  • 2
  • 17
  • 34
2
votes
5 answers

Messenger Bot in PHP: No Response Back

I am trying to build a test messenger bot in PHP. My web hook gets setup up perfectly and even the page subscription is done correctly. However, my bot does not respond to any text in messenger. I have tried to change app IDs, page IDs, just to make…
Gautamm Mehra
  • 23
  • 1
  • 5
1
vote
0 answers

Test users to test a Facebook messenger chatbot

How can I have say 10-20 test users to test a messenger chatbot? Test users (the facebook supplied "fake" users) cannot be used at least so it seems. I can add existing facebook accounts as testers, but they all have to become Facebook…
Bela Vizy
  • 1,133
  • 8
  • 19
1
vote
2 answers

Unable to integrate RASA chatbot to Facebook page

I have created a new app on Facebook and set up messenger and added an existing page. I have put access token, secret, and verify to credentials.yml file in RASA project. Using ngrok I created a callback URL and added it to the Facebook callback URL…
AllTech
  • 563
  • 6
  • 27
1
vote
0 answers

unable to Import package 'from chatbase import Messgae'?

hi there I'm currently facing this issue Unable to installed properly chatbase its give me module error Traceback (most recent call last): File "", line 1, in File…
1
vote
0 answers

get user address in messenger chatbot with python in dialogflow

I am working on facebook messenger chatbot development i am having these facebook webhook error showing in picture. i want to make it with dialog flow using python language. the idea is to get user current and destination location.
1
vote
1 answer

Send Image from byte[] using ms bot, Channel: Facebook, C#

I need to send image in bot. converted my Image to Byte Array. In emulator image is sending, but in Facebook, it is not sending. Below is my code. byte[] imageBytes12 = my image; string url = "data:image/png;base64," +…
Sanjeev Gautam
  • 353
  • 3
  • 15
1
vote
0 answers

Already have "pages_messaging" permission, but once the subscription endpoint is called. It says I need to request "pages_messaging"

To activate bot to page, pages_messaging permission is required as stated in documentation. The permission has been submitted and approved. It's working fine under development mode. But once set to live mode and tried to subscribe chat bot to…
1
vote
1 answer

Show / Hide Facebook Chat Plugin

This question has been asked before on other forums but dont see to be able to find an answer the works, so asking again incase anyone can help. I have the facebook chat plugin on my website www.tiqy.com, which works fine with the following code.…
1
vote
0 answers

Establish bot to bot communication in Microsoft Bot Framework

I have 2 published bots in Azure. Now, I would like to establish communication between bots. Using Skill bot concept, I can able send message from parent bot(Bot1) to child bot (Bot2). once Bot2 received the message it throwing below error: Error…