Now that I am able to make a "simple" HTTP GET request from a "first website" to a "second website", how is it possible to pass parameters safely in the URL using Ruby (on Rails)?
URL example for the GET request: http ://www.example.com/index.html?param1=test1¶m2=test2
Then, in a "second website", I need to read parameters passed from the HTTP GET request of the "first website" to prepare the response. How can I make that?