I have created a Facebook real-time api subscription for one of my apps. I subscribed to the user object and the likes field. I have verified that my original subscription was successful by requesting my current subscriptions and I received the right info back from facebook:
{
"data": [
{
"object": "user",
"callback_url": "http://mydomain.com/myapp/callback.php",
"fields": [
"likes"
],
"active": true
}
]
}
If I understand correctly, I should receive a callback whenever a person who has authorized my app likes something on Facebook.
First question, is that correct?
If so, I authorized my app on my personal Facebook page, and then liked https://www.facebook.com/frontalot's page, but I didn't receive a callback.
Any ideas why?
EDIT:
One of the proposed answers mentioned that the docs say the likes connection is not supported yet, but this is what the documentation says:
Here are the list of User connections to which you can subscribe: feed, friends, activities, interests, music, books, movies, television, likes, checkins, location, events.
You can't subscribe to these User connections yet: home, tagged, posts, photos, albums, videos, groups, notes, inbox, outbox, updates, accounts.
So it says I can subscribe to the likes connection.
user_likesfor this to work I think. – Gabriel May 19 at 14:31