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 messenger checkbox plugin confirm_optin not triggering messaging_optin webhook to post to my server

i am working with Facebook Checkbox Plugin everything is working fine and I am able to render the plugin. My problem is that facebook is not sending request to my webhook url when Confirming Opt-in. in the facebook docs it is mentioned that After…
KEVIN AMOS
  • 11
  • 3
1
vote
0 answers

How to block Facebook webhook calls for app specific users?

We have a Facebook app that manages user business pages, we are using webhooks to subscribe to 'feed' event for access comments. Our application has 7 days free trial after that the account becomes inactive and may be deleted from our database. But…
1
vote
0 answers

How to connect facebook webhook to a group?

I did a facebook app with a webhook. I can get it to send a test to my endpoint app, but how do I connect it to at user or a group to get real data? I can't find it anywhere in the docs.
Kresten
  • 810
  • 13
  • 36
1
vote
1 answer

Webhook Global Variable

I have created a node.js webhook for my facebook messenger bot. The bot is built in dialog flow and the database is connected to firebase. My question when a function is invoked in the webhook to log in, after logging in, I get a userID from the…
1
vote
0 answers

Request parameters not coming in facebook webhook callback url

I want to integrate Facebook leads into my WordPress website. I went through all instructions given on Facebook url https://developers.facebook.com/docs/marketing-api/guides/lead-ads/quickstart/webhooks-integration But I'm not getting request…
1
vote
0 answers

Facebook Webhooks with pages - only want to get posts

I'm using Facebook Webhooks with a an app subscription to a page. I've it linked to functions in Firebase, and so far everything is running really well. However, the one snag is that its recording every comment, like and update! With a really busy…
kierandes
  • 161
  • 3
  • 16
1
vote
1 answer

Get the href configured in the comments plugin from the facebook webhook callback

I'm trying to retrieve the href attribute configured in the Facebook comments plugin from the plugin_comment webhook, in that way I can know the comment origin and trigger a notification to the owner of the content where the comment was made. I've…
1
vote
0 answers

Facebook App - Can an app have more than 1 Webhook URL setup with it?

I'm currently developing a Facebook app, which will subscribe to Pages in order to pick up activity on the "feed" of the page. So any posts and comments will trigger the Webhook. Currently it seems that you can only set 1 Webhook URL per…
1
vote
1 answer

Facebook Webhook The URL couldn't be validated. Response does not match challenge

I'm setting up comment moderation tool on a client's website, and in order to do that I need to create an app through facebook developer tools and create a webhook in order to be able to moderate comments. When I try to set up the webhook, this is…
TannerHolm
  • 1,983
  • 1
  • 11
  • 10
1
vote
1 answer

Facebook API "conversations" webhook

I'm developing a bot that receives a call from "conversations webhook" to know when a page receives a new message and answer it from my bot. I've tried "messages" but I can not even make it activate when they send me a message. I have my…
1
vote
1 answer

Facebook leadgen webhook creating duplicate leads

The Facebook leadgen webhook for my Facebook page is creating two leads for every form submitted on my page. When using the Facebook leadgen tester the lead is created only once. Have tried this using both filling in the form manually as well as…
1
vote
0 answers

Facebook Webhook on adding/editing/deleting a comment in a group

Is it possible to have Webhooks for adding/deleting/editing a comment on posts in a groups feed, using the Webhooks of Facebook, or services like Zapier.
1
vote
0 answers

For Facebook webhook updates, how long does it normally take for a page post to be relayed by a webhook to a callback URL?

I'm troubleshooting an issue with a Node application I've inherited serving as a webhook callback endpoint. To debug, I'm posting messages to a page that has been subscribed by the Facebook app associated with the endpoint and following my Node…
Chapman Atwell
  • 1,007
  • 1
  • 9
  • 13
1
vote
0 answers

How to enable HTTPS in AWS EC2 instance?

I have launched Ubuntu Server 16.04 LTS (HVM) instance on AWS and running a Nodejs based app server. The appserver runs fine on HTTP and I am able to get the JSON test response. Now I need to enable HTTPS on EC2 as I need to connect this URL to…
Rohit
  • 6,941
  • 17
  • 58
  • 102
1
vote
0 answers

Do we need multithreading for facebook chatbot server?

We are working on a facebook chatbot. It looks facebook sends bunch of messages together in a json array and waits until that request is processed. It looks like at least in development phase it does not make multiple web request to server. So do I…