In PHP I can do this:
$request = "http://www.example.com/someData";
$response = file_get_contents($request);
How would I do the same thing in Ruby (or some Rails method?)
I've been googling for a half an hour and coming up completely short.
|
In PHP I can do this:
How would I do the same thing in Ruby (or some Rails method?) I've been googling for a half an hour and coming up completely short. |
||||
|
|
|
The standard library package
|
|||||||
|
Not sure why I didn't find this earlier. Unless there's an better way, I'm going with this! |
||||
|
|
|
In your view try
|
|||||||
|
|
Using the net/http library as shown:
|
|||
|
|