Skip to content

Instantly share code, notes, and snippets.

@rocketbop
Created September 1, 2023 14:47
Show Gist options
  • Save rocketbop/0af1b06f27d3d042bfd4f3698d1565d8 to your computer and use it in GitHub Desktop.
Save rocketbop/0af1b06f27d3d042bfd4f3698d1565d8 to your computer and use it in GitHub Desktop.
You should try JSON
url = "ourlittlesecreturl.com"
while url do
res = RestClient.get(url, { accept: :json })
body = JSON.parse(res.body);
url = body["follow"]
message = body["message"]
puts message, url
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment