Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
Unfortunately, offline_access scope was removed. See developers.facebook.com/roadmap/offline-access-removal – Rajesh Nov 7 '12 at 19:03
Ok. So the second way - I need to get the access_token. Could you help me, please, how to get it for currently logged-in user? I know that the access_token is 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

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.