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

Facebook - Get conversation thread ID with message ID?

When I receive a "message received callback" event from the Facebook Realtime API (webhooks) I want to fetch previous messages in the conversation. To do that I need the ID of the conversation…
John
  • 909
  • 4
  • 12
  • 29
9
votes
3 answers

Facebook messenger app webhook subscription - Insufficient Permission

I have facebook messenger application (it is bot using MS Bot Framework, although I don't think it is relevant). It has webhook subscribed to page events. It used to work fine until few days ago, when the webhook was unsubscribed from page and when…
8
votes
2 answers

Facebook API page feed didn't send information to my webhook?

I'm admin of my test app, and my test page. Now I'm doing a function get page's feed realtime by webhook, just only on development mode. When I click test button on App's Dashboard, It has been sent to my webhook. But when I comment or like ... the…
kevin
  • 105
  • 2
  • 8
8
votes
1 answer

Verify X-Hub-Signature from Facebook

I'm something of a beginner with the Play Framework (2.5 and Scala in this case) - and I'm trying to learn by building a bot for Facebook messenger. However I've gotten stuck trying to verify the signature of the messages. I've followed the Facebook…
Johan
  • 689
  • 7
  • 17
6
votes
2 answers

How to configure Facebook webhooks?

I want to configure Facebook webhooks for the application I'm developing. What I did so far was: Create FB app Go to app settings and create a new webhook: Add a valid callback URLs Choose particular fields Successfully save the settings Now,…
Kamil Lelonek
  • 14,592
  • 14
  • 66
  • 90
5
votes
3 answers

Instagram webhook not activating

My goal is to use the Facebook webhooks to get a notification whenever an IG user mentions my IG account. For that I have followed these steps: I have created a Facebook page and connected it with an Instagram business account. I have created a…
Alan
  • 161
  • 1
  • 2
  • 7
4
votes
1 answer

Facebook webhook verification response structure

This is my first time posting the question so please feel to provide feedback to improve the question. Facebook webhook mentions that the endpoint should be first verified before the webhook endpoint can receive any event notifications. The docs for…
4
votes
1 answer

Why is the Instagram Graph API webhook not working

I am not able to get webhook calls when another user post a comment (with mentions) on another/my media. Just for testing purposes I set up a ngrok server for my webhook endpoint, which always answers with a 200 and handles the verfication. Before…
4
votes
2 answers

Facebook webhook, how to get conversation id from mid id

Hello everyone i'm building a chat bot, i'm having a problem that is, when a user sends a message to my app, i don't get the conversation id like "t_31231231231231", instead I get "mid", I don't know how to get the conversation from "mid", i tried…
4
votes
2 answers

App review is required to get Facebook Webhook working. How to develop?

I'm developing an app which must interact with Facebook API Graph and also use webhooks to get live updates. Now I'm facing a problem I can't receive a live webhook updates until my app is reviewed and is not in development mode. I've found a thread…
Olegas
  • 10,349
  • 8
  • 51
  • 72
4
votes
0 answers

My facebook messenger webhook isn't receiving messages for the pages which are not created using the same account as fb application

Webhooks sends message for: The pages created in the same account as app account. I can subscribe the pages for the webhook using page-id/subscribed_apps and it starts showing up in Webhooks Subscribed pages: XXXXXXXXX When subscribe the pages for…
4
votes
1 answer

Webhook for hosted event?

I have a webhook subscribed to Page feed events. I want it to tell me when a public event has been created on the page OR a page the user manages. The app dashboard tells me this is the JSON object that will get sent to me: { "field": "feed", …
user1126515
  • 1,133
  • 3
  • 17
  • 34
4
votes
1 answer

How to Unsubscribe an app for all Facebook pages Webhooks

I have a Facebook App which is subscribed to more than 20,000 pages. The server isn't able to process hooks from all these Facebook pages, I want to unsubscribe my app from all these Facebook pages. Is there a quicker way to do this. Most of the…
3
votes
1 answer

facebook webhook url error has been identified as malicious and/or abusive

We are testing facebook messenger with our bot. Few months back we were able to configure ngrok url over facebook.developer as callback webhook url, but not its giving error as "The url https://xyz.in.ngrok.io/webhook has been identified as…
SushantPatade
  • 254
  • 2
  • 12
3
votes
1 answer

Validating payload from Facebook webhook

EDIT: The comment by CBroe is the solution. Ensure the payload from Facebook is not parsed before making the hash. I'm trying to validate the contents of a webhook payload from the Instagram Graph API using the steps in the Facebook developer…
1
2 3
13 14