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 hear that fb_graph is the way to go and I already have my app registered with Facebook but I don't know how to get the access token to post things. I have my app ID and secret but I need to get that access token. All I'm trying to do is post to a Facebook fan page (as the page).

How do I get the access token?

share|improve this question
did you found out how to get the access token? cheers – joelmaranhao Nov 15 '12 at 19:18

4 Answers

Get the user:

user = FbGraph::User.me(access_token)
user.fetch

To see the users accounts details:

user.accounts

Select the Facebook page that you want to post to:

account = user.accounts.select {|account| account if account.name == "*Your Page Name*"}.first

(account.access_token => the pages access token) 
(account.identifier => page id)

Create new page instance:

page = FbGraph::Page.new(account.identifier)

Post to the page:

note = page.note!(:access_token => account.access_token, :subject => "Hello World", :message => "hey, this is a test from rails")
share|improve this answer
yes but where do you get the access_token from? – joelmaranhao Nov 15 '12 at 21:00
After a user logs into your app facebook returns the access_token to your site. – complistic Feb 27 at 7:13

The step-by-step procedure for access token with Oauth 2.0 is found here: http://developers.facebook.com/docs/authentication/. If you require a sample code in Ruby, create a new app and under "Hosting URL", click on "get one" and select Ruby programming language when prompted. It also contains code to pull from Graph API.

share|improve this answer

I highly highly recommend the new gem Koala for working with facebook.

share|improve this answer

If you do a call to https://graph.facebook.com/me/accounts

and pass in your access_token it will return data listing all the pages you have access to and the access_tokens needed to post to those walls.#

You get your access token by logging in and the access token is passed back by the login process.

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.