如何查看 post 在 fiddler 上使用 libcurl 的数据?

How to see data that post out for using libcurl at fiddler?

我想post数据到网站 我使用下面的示例代码和库 运行 (https://curl.haxx.se/libcurl/c/http-post.html)

我用"Telerik Fiddler Web Debugger"监控 post 输出的数据...但我尝试了很多次并且 在 Telerik 看不到任何数据...

如何修改Telerik的代码或设置 看到 post 出来的数据??

感谢您的大力帮助!!!

您可以使用 libcurl 文档中提供的 CURLOPT_DEBUGFUNCTION callback. A full example using that option and some handy functions you can copy and paste exist in the debug.c example 从 libcurl 本身获取数据。