Facebook\'s real-time updates docs now say that you can get the feed for a page:
You can subscribe to the page\'s feed in the same way you subscribe t
For this you need to set up an endpoint URL that receives both HTTP GET (for subscription verification) and POST (for actual change data) requests from Facebook.
Then you should make a POST to the graph API url https://graph.facebook.com/ to subscribe, and be ready to handle the verification request.
Then to list subscriptions, just perform a GET request on the same url, https://graph.facebook.com/, which returns a JSON-encoded content that lists your subscriptions, up to one per object type.