I am trying to build a backend rails app that goes to a public facebook page, and pulls down any new posts.. But of course, i am running into issues with authentication.
I am able to do everything that i want, when using the sample access token provided here.
HTTParty.get("https://graph.facebook.com/#{name}/posts?access_token=#######################################")
But apparently this access token expires. I dont have any front-end component to this app, as it is not intended to be managed, or accessed by a user. All i need is basic permissions, because i am only interested in public pages.
I am happy to hard code my log-in info, if this authentication step could be automated.
Does anyone know how i can obtain a basic oauth access token without needing a user to click the "approve" button?