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
v1.1.0
params are not encoded properly, i get this instead https://httpbin.org/get?key1%3Dvalue1%26key2%3Dvalue2
https://httpbin.org/get?key1%3Dvalue1%26key2%3Dvalue2
import tls_requests params = {'key1': 'value1', 'key2': 'value2'} r = tls_requests.get('https://httpbin.org/get', params=params) print(r.url)
The text was updated successfully, but these errors were encountered:
@keef I'm working on patching it up. Thanks
Sorry, something went wrong.
No branches or pull requests
TLS Requests version
v1.1.0
Issue description
params are not encoded properly, i get this instead
https://httpbin.org/get?key1%3Dvalue1%26key2%3Dvalue2
Steps to reproduce / Code Sample
import tls_requests
params = {'key1': 'value1', 'key2': 'value2'}
r = tls_requests.get('https://httpbin.org/get', params=params)
print(r.url)
https://httpbin.org/get?key1%3Dvalue1%26key2%3Dvalue2
The text was updated successfully, but these errors were encountered: