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, when I'm querying for page subscriptions I get the response:
{
"data": [
{
"object": "page",
"callback_url": "CALLBACK_URL",
"fields": [
"feed"
],
"active": true
}
]
}
which seems to be valid.
What should I do next? How to start listening from feed of a particular page?