No commit activity in last 3 years
No release in over 3 years
This is a very simple parser for Facebook Pages (a.k.a fan pages), using the Graph API. This gem was made in 2 hours for an experimental project, so many small fixes need to be made. You're welcome to make a pull request :)'
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0
>= 0
~> 1.7.0

Runtime

 Project Readme

Description

This is a very simple parser for Facebook Pages (a.k.a fan pages), using the Graph API. This gem was made in 2 hours for an experimental project, so many small fixes need to be made. You're welcome to make a pull request :)

Installing

Include the gem on your Gemfile:

	gem 'facebook_page_parser'

Install it

	bundle install

Usage

Simple example:

	page = "http://www.facebook.com/pages/CAIXA-DE-IDEIAS/89888524723"
	fb = FacebookPageParser::Parser.new(page)
	fb.get["description"] #or any attribute you want from the API

Following the same example, to require a picture in a given type you could use:

	thumbnail = fb.page + "/picture&type=small"