Project

facebookrb

0.0
No commit activity in last 3 years
No release in over 3 years
Simple Facebook API client and middleware
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

 Project Readme

facebookrb¶ ↑

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.

Installation¶ ↑

gem install facebookrb

General Usage¶ ↑

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.

Options¶ ↑

The options for the middleware and the client are identical, and are values you get from Facebook:

:api_key, :secret, :canvas_url

Features¶ ↑

Facebook Connect¶ ↑

The library supports reading parameters from cookies, so Connect support should be there (not thoroughly tested ATM).

Extra Info:

Batching¶ ↑

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:

Potential Features¶ ↑

These would all be easy to add if anyone needs support for them.

Acknowledgements¶ ↑

The code for this project was initially derived from:

Contributors: