Is there any way to view the specific information of a request sent by cURL?

using PHP"s cURL to simulate login
but every time POST is unsuccessful
check the cURL document and find that cURL only provides a way to display the header part
is there any tool or method that can check the specific information of the request sent by cURL?

Mar.10,2021

Agent package grabbing tools can be seen, such as fidder, etc.

besides, aren't you setting up request header and request body by yourself? you should know the specific information.


curl can go to the agent.
the general proxy server is fidder or charles

curl_setopt($ch, CURLOPT_PROXY, "127.0.0.1"); //   
curl_setopt($ch, CURLOPT_PROXYPORT,8888); //
Menu