-
-
Notifications
You must be signed in to change notification settings - Fork 736
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Failure parsing url escaped data from windows #43
Comments
In my opinion, no. Qs only performs URI encoding/decoding (with |
@nlf why isn't it uri encoded? The hole url would look like this http://www.example.com?a=%f6%e4%fc%e1%20 What's wrong with this uri? http://www.motobit.com/util/url-decoder.asp decodes this uri as RFC says nothing about needed encoding. |
Well using node's encodeURIComponent('öäüá ')
'%C3%B6%C3%A4%C3%BC%C3%A1%20' Which is definitely not encoded the same as your sample, this is because the |
Ok, so Qs only supports the same encoding as |
Hi,
a windows client sends me the following sequence:
Javascripts
unescape
can handle this sequence,Qs can't. I think it's ucs2 encoding.
A spec would look like this:
Is this to be considered a Qs-Bug?
Regards
Dieter
The text was updated successfully, but these errors were encountered: