Skip to content

Instantly share code, notes, and snippets.

@shaneog
Forked from emad-elsaid/facebook-places.rb
Created April 1, 2014 17:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shaneog/9919360 to your computer and use it in GitHub Desktop.
Save shaneog/9919360 to your computer and use it in GitHub Desktop.
#!/usr/bin/env ruby
# Author : Emad Elsaid (https://github.com/blazeeboy)
require 'koala' # gem install koala --no-document
# create a facebook app and get access token from here
# https://developers.facebook.com/tools/explorer
# select "user_status", "friends_status", "user_checkins" when authenticating
oauth_access_token = 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX'
graph = Koala::Facebook::API.new(oauth_access_token)
places = []
page = graph.get_connections('me', 'checkins')
begin
places += page.map {|p| p['place']}
end while page = page.next_page
places.each do |place|
unless place['location'].is_a? String
puts "#{place['name']} lat:#{place['location']['latitude']} long:#{place['location']['longitude']}"
else
puts "#{place['name']} location:#{place['location']}"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment