Questions tagged [facebook-webhooks]

Facebook webhooks allows to be notified in real-time of change events related to specific objects in the Facebook Social Graph, using the HTTP webhook callbacks.

What is it?

Facebook webhooks allows to be notified in real-time of change events related to specific objects in the Facebook Social Graph, using the HTTP webhook callbacks.

See also

203 questions
0
votes
0 answers

messaging_postbacks webhook events (Messenger) in Oracle's skill bots

So, I have managed to get my bot up and running on Facebook Messenger. I recently added the persistent_menu but now I can't figure out how to respond to those menu click postback events on Oracle Cloud's Skill bot. Can anyone guide me to the right…
0
votes
1 answer

Why facebook webhook page feed not receiving test user events while in development

Steps I have taken: I have created a Facebook App with the status "In Development" Created Webhook, subscribed to Page>Feed. APPID/subscriptions response is { "data": [ { "object": "page", "callback_url":…
user2224893
  • 139
  • 2
  • 12
0
votes
0 answers

Subscribing to /me/account changes on Facebook

I'm trying to get notified whenever a user either creates or gains permission to manage a new page. I've noticed there isn't a way to subscribe updates on /:user_id/account since the User webhook only provides access to the fields displayed here. Is…
Bruno Sena
  • 43
  • 1
  • 4
0
votes
1 answer

How to remember previous responses in Webhooks (Building Facebook Messenger Chat Bot)

For the chatbot, it is simple to implement a webhooks event for a single event such as: If option A, send X If option B, send Y If Option C, send Z However, what if the next event should be based off the previous event. Such as there are options…
0
votes
1 answer

Google Cloud function and reading data from database

I am trying to set up (Facebook) Webhook. My databse structure is like this: { "users": [ "1" : {"FacebookID" : "1234567"}, "2" : {"FacebookID" : "9876554"} ]} I reduced the code for the webhook to the minimum to show where I have my…
0
votes
1 answer

Will there be a problem if I use a single server for multiple messenger bot?

I have two messenger bot Bot-01 Bot-02 In my server, I created two webHook like myDomain/webhook/bot01_Id myDomain/webhook/bot02_Id While I verify webHook, I find each specific bot Information from the database and verifying it. While sending a…
Shams Nahid
  • 6,239
  • 8
  • 28
  • 39
0
votes
2 answers

How to make a messenger chat bot without a facebook app and webhook?

I went through the documentation for creating a chatbot for messenger platform. All I find there, I need a server, which in the case used as a service for the Facebook platform. The server also validates the webhook from facebook app. Now I see,…
0
votes
2 answers

Facebook Send Api - reactivate webhook subscription

My server went offline for a day and now facebook has stopped sending requests to my webhook. This is the error message i get: Your Webhooks subscription for callback URL https://myurl has not been accepting updates for the past 0 minutes. This…
Pjotr Raskolnikov
  • 1,558
  • 2
  • 15
  • 27
0
votes
1 answer

How to unsubscribe Facebook webhook if page's token expired?

My Facebook App keep receiving webhooks from token expired pages. How can I unsubscribe them to avoid unnecessary incoming traffics?
0
votes
0 answers

How to send bot message to all inactive player webhook facebook messenger

I am new to facebook messenger(Webhook). I am using Nodejs and Heroku for sending bot message. My requirement is to send message to all inactive player at once via Page Access Token. Is there a way achieve this. Or/ Is there any alternative…
0
votes
0 answers

Sending the correct credential using Facebook Grap Api and Webhooks to received subscribed messages from messenger through django

I'm having trouble wrapping my head around how exactly to use the Facebook Graph Api and Webhooks. I'm trying to send and read messages from a group chat that I'm a part of on Facebook. I followed the steps to create an app on…
juju
  • 884
  • 1
  • 9
  • 31
0
votes
1 answer

Intragram Graph API Webhooks

I have read the documentation, https://developers.facebook.com/docs/instagram-api/webhooks but I am confused as to how the mentions API with the webhooks works and was hoping someone could throw some light my way. I have successfully setup the hook,…
jimplode
  • 3,474
  • 3
  • 24
  • 42
0
votes
0 answers

Facebook webhook for pages not sending info to server

I'm trying to integrate facebook with my application. I set up a server, webhook subscription went well (subscribed to fields: feed, conversation and messages), callback url is fine, test messages from app dashboard are coming to my server. Then I…
0
votes
1 answer

Unable to test facebook messenger bot. Webhook not receiving events

Following the recent changes for facebook developer, i had this alert on the webhook section on the developer dashboard, and therefore no webhook messages are received from 'testers, devs, etc' ; As a result i am unable to test my mesenger bot…
BlowMan
  • 353
  • 1
  • 7
  • 21
0
votes
1 answer

Socket hang up exception on Facebook Graph Api on POST call to messages using nodejs

Following is the code i am using to send response of message in nodejs (express) app, which is subscribed to webhooks. I am getting successful random messages from apiAiClient on sending any from the message on the Fb Messenger from the fb page,…