Reputation: 2220
I have a Facebook messenger bot. This bot is connected to Dialogflow using a Gmail address. I have generated a token from the Facebook app. Then this token is inserted into the Dialogflow account. Also, webhook URL and verify_token
from Dialogflow are given in the Facebook app.
Now I am facing a very odd problem. The problem is the bot is not responding to page messages or quick replies. So where is the problem? It is Facebook or Dialogflow? Please help me.
I have followed this documentation from Dialogflow. Dialogflow documentation Also, I have followed this tutorial from youtube.
Upvotes: 1
Views: 865
Reputation: 1391
I was able to replicate the video tutorial. I think you should be careful with these points.
dialogflow
, check if messenger integration is up and running and its pointing to your working enviroment. Defaults draft
.facebook app
, check if its valid and working. Your app must exists and the webhooks should be selected and token should have not changed.intents
should be able to parse your incoming messages else you will not get any response.dialogflow
, you can check if your intents are working properly by chatting with it. You should get details of the response generated.
Hint: You can chat with your dialogflow agent by writing messages on the Try it now
to see if its working properlyfulfillment
is being use. If so, check if your inline editor or webhook are working properly and returning messages.Upvotes: 1