Replies: 1 comment 1 reply
-
Yo. 🤘 Sure, If you want to break past that constraint a good place to start would be working with Taking a look at the httpx/httpx/_transports/default.py Lines 215 to 222 in e63b659 ...if we wanted to also expose similar functionality in |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have noticed an odd behavior in the httpx module.
import requests
httpx.get("http://127.0.0.1/../../../../replay")
Which should typically send the request to the following path: /../../../../replay. Instead, it requests "http://127.0.0.1/replay" and modifies the specified input.
But I want to use the httpx to send HTTP requests but do not want the URL to be modified.
Beta Was this translation helpful? Give feedback.
All reactions