I'm trying to figure out how to subscribe to realtime updates to a page I have an access_token for (but not my app's page). I'm using the Koala gem and everything seems fine but I can't seem to figure out how to specify which page I want to subscribe to:
@updates = Koala::Facebook::RealtimeUpdates.new(:app_id => YOUR_APP_ID, :app_access_token => YOUR_ACCESS_TOKEN)
@updates.subscribe("page", "conversations", YOUR_CALLBACK_URL, YOUR_VERIFY_TOKEN)
the above is the code Koala says to implement but it doesn't say anywhere about how to choose which page we are subscribing to or where to insert the page_access_token.
Even when looking at the facebook example it doesn't have anywhere to enter the page access token.
Where do I specify which facebook page I want so subscribe to?
EDIT: When you subscribe to a "page" "conversations" which page are you subscribing to? All of them associated with a app_access_token? How do I know which pages are associated with the app_access_token?