Skip to content

Instantly share code, notes, and snippets.

@kjlape
Created March 21, 2023 19:45
Show Gist options
  • Save kjlape/31a879c4d76effa8da15a4efbafc517c to your computer and use it in GitHub Desktop.
Save kjlape/31a879c4d76effa8da15a4efbafc517c to your computer and use it in GitHub Desktop.
Here's a little snippet that follows redirects up to a limit.
max_redirects = 3
# Follow redirects
response = max_redirects.times.lazy.filter_map {
puts "Requesting #{url}…"
response = Net::HTTP.get_response(URI(url))
case response
when Net::HTTPRedirection
url = response["location"]
nil
else
response
end
}.first
assert_equal 200, response.code.to_i
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment