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
When I sent a get request like this
https://example.com/test?limit(1,1)
Insomnia encodes the comma character for me. And the request ends up being this:
https://example.com/test?limit(1%2C1)
Please note that Postman does not do this, neither do any HTTP clients that I tried (C# HttpClient, Angular 4 Http service)
If I'm reading the RFC right the comma is a sub-delim and is fully allowed within query part of URL.
https://tools.ietf.org/html/rfc3986#section-3.4
The text was updated successfully, but these errors were encountered:
There was a similar question in #592 about encoding the $. It seems like the best solution to this may be to have URL encoding be configurable.
$
Sorry, something went wrong.
Going to close this in favor of #605
No branches or pull requests
Details
When I sent a get request like this
Insomnia encodes the comma character for me. And the request ends up being this:
Please note that Postman does not do this, neither do any HTTP clients that I tried (C# HttpClient, Angular 4 Http service)
If I'm reading the RFC right the comma is a sub-delim and is fully allowed within query part of URL.
https://tools.ietf.org/html/rfc3986#section-3.4
The text was updated successfully, but these errors were encountered: