I have an existing Rails web application that I would like to integrate with Facebook, so when a user takes actions in my applications, news containing external links is later sent to the users’s wall / channel with a daemon summing up the latest Events. Currently, I do not need a separate single, etc., Just the ability to send updates.
I would also like to be able to send notifications to friends of users if they also use the application, but I would be pleased only with the functionality of the news feeds.
I am working on a pragmatic book by Facebook Platform Development programmer Michael Mangino, which uses the facebooker plugin, and the beginning of the book says the following:
Facebook uses sessions to verify that our application is acting on behalf of the active user. When we want to send a notification on behalf of our user, we will provide Facebook with information about user sessions. Facebook will verify that the session actually belongs to the requestor and also verify that the User has been active on ours for the past hour. Facebook uses the session to prevent the application from taking action on behalf of a user who is not active using them
What is considered "active in the application" and what does it mean in this context? I saw other applications that do things such as automatically placing RSS feeds in a user’s profile, so it looks like they have similar applications where the only interaction is a one-time installation and setup.
How do these applications work, and is it possible to get this functionality from facebooker?
source
share