Created
March 21, 2023 19:45
-
-
Save kjlape/31a879c4d76effa8da15a4efbafc517c to your computer and use it in GitHub Desktop.
Here's a little snippet that follows redirects up to a limit.
This file contains 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
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