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
1
vote
0 answers

Facebook sends very compressed image in messenger webhook

In my bot i use Facebook Send Api I need get image send by user via facebook messenger (from message.attachments[0].payload.url ) But in web version and messenger app I gets VERY different compression Image in web version Image in webhook But it is…
zagran
  • 11
  • 2
1
vote
1 answer

Webhook for users checkins on facebook api?

I'm trying to add a webhook for tagged_places for users which authorized my app. It's possible? I trying to use subscriptions as described here for checkins: https://developers.facebook.com/docs/graph-api/webhooks/ But I wasn't receiving any POST…
Murilo Azevedo
  • 331
  • 1
  • 2
  • 7
1
vote
2 answers

Can't get the response from webhook

I created a webhook using python ( using this example) for my project in api.ai My code is here : #!/usr/bin/env python import urllib import json import os from flask import Flask from flask import request from flask import make_response #…
1
vote
2 answers

Facebook Webhook "message" subscription field does not exist?

I'm trying to subscribe to private messages sent to my Facebook page. You can subscribe to this callback by selecting the message field when setting up your…
John
  • 909
  • 4
  • 12
  • 29
1
vote
0 answers

How to broadcast or send messages to multiple user from page using facebook api

I am using the facebook webhook, i am sending the messages to the messaged user using this format curl -X POST -H "Content-Type: application/json" -d '{ "recipient": { "id": "USER_ID" }, "message": { "text": "hello, world!" } }'…
Punabaka Abhinav
  • 502
  • 1
  • 9
  • 17
1
vote
0 answers

Facebook Messenger Webhook weird subscription error

I'm trying to re-subscribe an app to facebook (through graph-api post/me/subscribed-apps). The subscription worked the first time and received {success: true}, however now I'm receiving the following error: {"error": {"message":"(#2) Messaging…
Bar Margalit
  • 38
  • 1
  • 2
  • 10
0
votes
1 answer

Agent Executer chain giving multiple 200 OK POST requests to meta webhooks

@router.post("/webhook") async def webhook_events(request: Request): payload = await request.json() # print(json.dumps(payload, indent=4)) message = "" # print(payload) if "contacts" in…
0
votes
0 answers

How to make your facebook bot created using Graph API available to all public?

I have successfully created a facebook messenger bot using Graph API by following these two…
0
votes
0 answers

The URL couldn't be validated. Response does not match challenge, expected value="802376652", received="null"

When I am trying to configure meta webhook using AWS API as callback URL for my lambda function, I am getting an error: The URL couldn't be validated. Response does not match challenge, expected value="802376652", received="null" Here is my lambda…
0
votes
0 answers

Is there a way to manually trigger Facebook Meta API's verification webhook manually or check its verification status?

When creating a webhook on the Meta developer platform, one is asked to provide a Webhook URL and verify_token. Upon clicking Save & Verify a verify request is sent to the URL to check whether the endpoint is valid. The documentation also claims…
0
votes
0 answers

How to fetch the user email address from sender_id field of Mentions webhook of Facebook Graph API?

I have subscribed to Page Mention webhook of Facebook Graph API. It returns me a response in this format : { "entry": [ { "id": "0", "time": 1690196803, "changes": [ { …
0
votes
0 answers

will facebook Instagram webhooks notify me of a command deletion?

Is it possible via the facebook Instagram webhooks to be notified when a command is deleted? If not, what is the alternative way to know if a comment has been removed from my Instagram page?
0
votes
1 answer

Trouble with webhook for whatsapp

I am writing a webhook in C# to receive messages, change state and so on from whatsapp business platform. My webhook receives data correctly from meta, but I cannot understand how to convalidate URL. This is my very simple code public partial class…
Demo
  • 1
0
votes
0 answers

Whatsapp Webhook, a phone number from the same whatsapp business api account answers instead of another

I've developed two Whatsapp webhooks, configured with different phone numbers from the same whatsapp business api account. I hosted them on different servers. One works correctly, the other when it receives a message, it's the phone number of the…
0
votes
0 answers

Facebook Webhook Event Trigger

I have successfully added the callback URL in the Messenger webhook settings page and used the ColdFusion server to receive token verification and message events. Token verification works fine on the callback URL but the event is not triggering when…