We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi,
I have an restful server with an url like this:
http://host:port/id/name:107/?type=FS
Since there is an special character colon in the path, I've checked code, find those codes in hackney.erl
request(Method, #hackney_url{}=URL0, Headers, Body, Options0) -> %% normalize the url encoding URL = hackney_url:normalize(URL0),
Actually, I won't wan't encode colon in URL, but maybe in query parameters, but the code seems encode all the URL.
If I use httpc:get, looks working fine.
The text was updated successfully, but these errors were encountered:
mmm Is this a valid syntax though? Hackney is reusing the algorithm you can find in chrome. I will check the spec anyway.
Sorry, something went wrong.
5f3d08f
No branches or pull requests
Hi,
I have an restful server with an url like this:
Since there is an special character colon in the path, I've checked code, find those codes in hackney.erl
Actually, I won't wan't encode colon in URL, but maybe in query parameters, but the code seems encode all the URL.
If I use httpc:get, looks working fine.
The text was updated successfully, but these errors were encountered: