How would I go about checking if a URL exists using Ruby?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Use the Net::HTTP library.
At this point
|
||||
|
|
|
You should read this article : |
|||
|
|
|
Simone's answer was very helpful to me. Here is a version that returns true/false depending on URL validity, and which handles redirects:
|
|||
|
|
|
Net::HTTP works but if you can work outside stdlib, Faraday is better.
(That is a success code, assuming that's what you meant by "exists".) |
|||
|
|