Facebookrb aims to be a lightweight yet fully featured client for the Facebook API, drawing on the best features from existing Ruby Facebook libraries. The functions and features are intentionally kept simple, so you can spend your time reading the official Facebook documentation rather than learning how the code works.
gem install facebookrb
The easiest way is to use the middleware. Put this in your config.ru, Sinatra application, or wherever you declare middleware:
require 'facebookrb' use FacebookRb::Middleware, :api_key => "APIKEY", :secret => "SECRET"
This will create a Facebook API client, populate it with any parameters from Facebook, and store it in the Rack env for you.
fb = env['facebook.client']
Make a call using short or long format (thanks tmm1/sinbook for the short version)
user = fb.users.getInfo('uids' => '123235345', 'fields' => ['name', 'sex', 'religion']) user = fb.call('users.getInfo', 'uids' => '123235345', 'fields' => ['name', 'sex', 'religion'])
This call parses the JSON from Facebook and returns the resulting objects (a Hash, Array, String, or Integer depending on how complex the JSON is). The raw text of the response is also available:
fb.call(...) fb.last_response
If you received params from Facebook, and they are valid, then you can access them:
fb.params['user'] fb['user'] # Also works
The ‘session_key’ param will automatically be passed forward to any API calls if available.
The options for the middleware and the client are identical, and are values you get from Facebook:
:api_key, :secret, :canvas_url
The library supports reading parameters from cookies, so Connect support should be there (not thoroughly tested ATM).
Extra Info:
The batch call will return an array of the results of each call made inside the block:
app_info, user_info = fb.batch do fb.application.getPublicInfo(...) fb.users.getInfo(...) end
Extra Info:
These would all be easy to add if anyone needs support for them.
-
Converting the request method from the Facebook POST to the original HTTP method used by the client. (wiki.developers.facebook.com/index.php/Fb_sig_request_method)
The code for this project was initially derived from:
-
The official Facebook PHP library
Contributors: