Skip to content

Instantly share code, notes, and snippets.

@jancorg
Last active August 29, 2015 14:16
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 jancorg/d14cd115327067e15a63 to your computer and use it in GitHub Desktop.
Save jancorg/d14cd115327067e15a63 to your computer and use it in GitHub Desktop.
require 'net/http'
require 'json'
domain = 'domain.com'
uri = URI("http://#{domain}/challenge")
response = ''
begin
uri['challenge'] = 'challenge.json'
response = Net::HTTP.get_response uri
uri = JSON.parse(response)['follow']
until uri.nil?
puts response
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment