You need to get the page_accesstoken and then add the app as a tab. You can do this by
getting the user access token of the admin with scope=manage_pages
once you get the user access token you can query me/accounts. It will display something like
{
"category": "Community",
"name": "page name",
"access_token": "xxxxx",
"id": "1111111134678999",
"perms": [
"ADMINISTER",
"EDIT_PROFILE",
"CREATE_CONTENT",
"MODERATE_CONTENT",
"CREATE_ADS",
"BASIC_ADMIN"
]
}
That xxx would be the page access token, with the page access token you have to add your app as a tab. You can do that by
https://graph.facebook.com/PAGEID/tabs?app_id=APPID&method=POST&access_token=xxx
And now you will get a request to your callback url whenever there is a change in the page. The request looks something like.
{
"object": "page",
"entry": [
{
"id": "408518775908252",
"time": 1360643280,
"changes": [
{
"field": "feed",
"value": {
"item": "like",
"verb": "add",
"user_id": 5900878
}
}
]
}
]
}
Hope this helps.