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.

In a Ruby program I have a password that is a Base64 string and so can contain forward slashes. I use that password and the username to perform HTTP requests

username = "User"
password = "/Base/64/With/Slashes"
requestUrl = "http://#{username}:#{password}@company.com"
response = RestClient.get(requestUrl)

so if password happens to contain forward-slashes those will be interpreted as port of the URI and I'll have an error message saying I have an invalid URI. Clearly each forward slash inside password must be replaced with %2F.

I tried to use URI.escape(), but it doesn't affect forward slashes.

How do I percent-escape Base64 string so that the result can be used for HTTP requests authentication?

share|improve this question
How about CGI.escape(password) – Lee Jarvis Jul 13 '12 at 9:03

1 Answer

up vote 1 down vote accepted

@injekt has the right answer in a comment, but here's a slightly elaborated version as an answer:

CGI.escape() is an appropriate tool for that task. Its documentation:

URL-encode a string.

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.