Here's my output:
URI.encode("http://localhost:3000/membership?referer_invite_code=a03478&fee=UVYA")
=> "http://localhost:3000/membership?referer_invite_code=a03478&fee=UVYA"
But I need output to be:
=> "http%3A%2F%2Flocalhost%3A3000..."
The reason is because I'm trying to do an embedded twitter link and twitter doesn't do well with ampersands, so as long as the encoding doesn't replace the &
for the last fee parameter with %26
it won't work. How do I fix this?
WORKING SOLUTION
Rack::Utils.escape("http://localhost:3000/membership?referer_invite_code=a03478&fee=UVYA")
But I guess I'm just curious why URI.encode
did not work
Im guessing you forgot before it