Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

So I have this string URL for an HTTP request

http://locahost:3000/stuff?owner=foo bar+type=video game

I need to pass this as part of an HTTP get request to another ruby service. How do I encode this URL, i.e. take off the spaces and special characters and come up with the right request URL? Is there a gem to handle that. I know this could probably be done with some kind of regex, but I was hoping to find a standard gem that could do this.

share|improve this question
1  
This is an probably a duplicate of stackoverflow.com/questions/6714196/ruby-url-encoding-string. – Andrew Hubbs Dec 3 '12 at 22:31

1 Answer

up vote 3 down vote accepted
require 'uri'
uri_string = URI::encode("http://localhost:3000/stuff?owner=foo bar+type=video game")

Not sure how searching for "ruby url encode" or parsing etc. didn't find that for you.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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