I use FbGraph gem and this part of code:
page = FbGraph::Page.new(ID_OF_MY_PAGE)
feed = page.feed!(
:access_token => access_token,
:subject => 'testing',
:message => 'Hey, I\'m testing you!'
)
It's working only if I (as the owner of the page) am logged in. I would need to run this task with CRON. Is there any way to set up the tokens for posting statuses if I wouldn't need to be logged in?
access_token. Could you help me, please, how to get it for currently logged-in user? I know that theaccess_tokenis generated, when a user is logged out, but I don't know, how to get it from user and use it in the snippet. – user984621 Nov 7 '12 at 19:38