Skip to content

Instantly share code, notes, and snippets.

@jacoyutorius
Created October 30, 2012 17:41
Show Gist options
  • Save jacoyutorius/3981770 to your computer and use it in GitHub Desktop.
Save jacoyutorius/3981770 to your computer and use it in GitHub Desktop.
facebook_api
#encoding:utf-8
require "rubygems"
require "pp"
require "koala"
token = "accesstoken"
@graph = Koala::Facebook::API.new(token)
# profile = @graph.get_object("me")
friends = @graph.get_connections("me" , "friends")
puts "Friends..."
pp friends
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment