Created
May 23, 2014 01:15
-
-
Save henare/b49b795ba1fec4c4aa4f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'open-uri' | |
require 'json' | |
# Grab a signed URL from the API console for the group you want: http://www.meetup.com/meetup_api/console/?path=/2/members | |
url = '' | |
results = JSON.parse(open(url).read) | |
results['results'].each do |r| | |
if r['other_services'] && r['other_services']['twitter'] | |
puts "https://twitter.com/#{r['other_services']['twitter']['identifier']}" | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment