Feed. APPID/subscriptions res..." /> Feed. APPID/subscriptions res..." /> Feed. APPID/subscriptions res..."/>

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

1.7k Views Asked by At

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": "https://example.com/webhook/",
      "active": true,
      "fields": [
        {
          "name": "feed",
          "version": "v3.2"
        }
      ]
    }
  ]
}

I can receive sample feed field update from dashboard!

Dashboard webhook page shows red warning "Applications will only be able to receive test webhooks sent from the app dashboard while they are in development. No production data, including that of app admins, developers, and testers, will be delivered unless the app is live."

Created Test Users and granted permissions manage_pages, publish_pages

Subscribed to the Test Page created by Test User. TESTPAGEID/subscribed_apps response is {success: true}

{
  "data": [
    {
      "category": "Business",
      "link": "https://example.com/",
      "name": "Application Name",
      "id": "<APPID>",
      "subscribed_fields": [
        "feed"
      ]
    }
  ]
}

Now when I post, like, and comment on Test Page, it doesn't receive any updates. What am I missing?

1

There are 1 best solutions below

2
On

You need to submit your app for review. When Facebook accepts your review, the webhook will start working on your page (if the page is subscribed to your app).