Closed RachelAlucard closed 2 months ago
I found that if I add a proxy to the curl_cffi request and set the value to the port that fiddler listens on, fiddler captures the curl_cffi request correctly. But why does the requests library not need to be configured with a proxy for fiddler to capture the request correctly?
This has been fixed in https://github.com/lexiforest/curl_cffi/commit/0cf03feef8395bea0444f318435551e1fa7e0cdf, please wait for the new release. As for the capturing issue, it's probably because of the interfaces.
Released in 0.7.2.
Describe the bug I compared the use with the requests library. While also using the get method to initiate a request with a request body, the curl_cffi library actually initiates a post request。The code is as follows:
Versions
Additional context The server is a simple server written using golang's gin. In addition to that, get requests sent to me locally using curl_cffi are not captured by fiddler, but requests sent to me locally by the requests library are captured by fiddler.