I am looking for a convenient and functional way to add encoded values to a URL query string in Ruby. Currently, I have:

require 'open-uri'

u = URI::HTTP.new("http", nil, "mydomain.example", nil, nil, "/tv", nil, "show=" + URI::encode("Rosie & Jim"), nil) 

p u.to_s # => "http://mydomain.example/tv?show=Rosie%20&%20Jim"

This isn't what I'm looking for, because I need to get "http://mydomain.example/tv?show=Rosie%20%26%20Jim", so that the show= value is not truncated.

Does Open::URI have another method that would do this? If not, can it be done with any other standard Ruby, or gem?

link|improve this question

You might want to look at the Addressable gem. It's everything Ruby's URI is, and a lot more. Highly recommended for anything beyond simple URL manipulation. – the Tin Man Feb 9 at 19:27
feedback

2 Answers

up vote 1 down vote accepted

Try with CGI::escape instead of URI::encode . doc here

link|improve this answer
Thanks. That does the job. I noticed that spaces show as pluses; so when I looked that up, I found the encoding in URL queries is called "www_form"; this led me to find a more convenient way to do it with open-uri, but I accept your answer because it does exactly what I asked for. – SimonMayer Feb 9 at 17:08
feedback

URI.encode_www_form works well and is more convenient for adding multiple arguments

q = URI.encode_www_form("show" => "Rosie & Jim", "series" => "3", "episode" => "4")
u = URI::HTTP.new("http", nil, "mydomain.example", nil, nil, "/tv/ragdoll", nil, q, nil)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.