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

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.

Related

Independently subscribe to Instagram and Facebook Page webhooks?

I know it is possible to subscribe to webhooks (for a Meta/Facebook App) for a specific Facebook page by using https://graph.facebook.com/{pageId}/subscribed_apps?subscribed_fields={fields}&access_token={token} but how does this work for Instagram pages? The only text I have found about it states the following:
Note: You cannot use the subscribed_fields parameter to configure or subscribe to Webhooks for Instagram. You must use your app dashboard to subscribe to Instagram Webhooks (from https://developers.facebook.com/docs/graph-api/reference/page/subscribed_apps/)
But it sounds a bit weird that a customer using our App cannot connect their Instagram page to our App and have webhooks delivered, without me as an App-owner doing manual stuff in the app dashboard.
Am I missing something?
No need to subscribe instagram page you should just go to instagram entry on the developer facebook account webhooks and then subscribe to a field that you want to receive notifications . your facebook page should be associated to your instagram business account .
N.B For the feed of instagram we have only comments field

How to setup instagram business account webhooks?

I am new to FB APIs. I want to subscribe to Instagram business accounts and receive mentions in comments, captions, or stories webhooks.
I am following the following docs: https://developers.facebook.com/docs/instagram-api/guides/webhooks/#install-app
The problem is I am able to subscribe to Facebook page fields like mention, feed, etc. using POST /{fb-page-id}/subscribed_apps?subscribed_fields=mention&access_token={fb-page-access-token}. But I am not able to subscribe to my Instagram business account.
The given syntax in FB docs doesn't works:
?access_token={access-token}
&fields={fields}
I can't put Instagram fields like mentions, comments in the above code it raises errors as well as when I replace the fb-page-id with the id of the Instagram account I get Unsupported post request.
Can anyone tell me what I am doing wrong here?

Webhook event for Facebook sponsored message

I am using Facebook's Marketing API to create sponsored message as described here:
https://developers.facebook.com/docs/marketing-api/guides/messenger/#sponsored
After creating the ad, Facebook reviews the ad and then after approval ad gets sent to page audience. I want to know when my ad gets approved or rejected through webhook. Is it possible? Is there a way to receive webhook events for this?
There are some ad account related webhooks in Graph API. These will send events when your ad:
is in_process status
goes out of in_process status
has some issues with it
Please read up more on the official documentation:
https://developers.facebook.com/docs/graph-api/webhooks/reference/ad-account/

Facebook webhook feed - not receiving shares

I have subscribed my facebook app to receive webhook updates on feed and it works great with posts, likes and comments. However, I'm not receiving post shares at my endpoint even though facebook docs states that the feed subscription also includes share (Reference: https://developers.facebook.com/docs/graph-api/webhooks/reference/page --> feed section).
Anybody has an idea?

Retrieving Facebook check-ins to a particular Facebook page using Facebook webhooks subscription

I have used Facebook webhooks to retrieve check-ins for a particular Facebook page that I have created. I have implemented an endpoint to receive the webhooks notifications. I was able to get the messages and posts by test users through the webhooks. However I cannot get any check-ins done for the page. Is there any special permissions or way to get the page check-ins?