I am building a rails app that scrapes user's graph API content regularly. My first approach was to do this completely serverside, using Omniauth for authenticating and Koala for interacting with Facebook on the server. I had to run a background process to do this.
However I realized it can become very expensive and am thinking about the option of doing it both server-side and client-side. I still need to do server-side because I need to populate content even when the user is not on the site, but at least when the user is on the site it makes more sense to do all the polling client side. This way, my server wouldn't need to scrape FB server as often, so the cost stays low, and the users are happier because when they can receive updates as often as they want, using FB javascript SDK
I'm not sure if this is possible. Currently I know how to do this completely server side, or completely client-side. But I don't know how to acquire access_token from server-side and use that information on the client-side as well to let the client do most of the polling. I would appreciate your advice.