Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
你能推荐一个好的 HTTP Debug Recorder 和 Autoresponder 吗?我通常使用fiddler的自动回复,但它不能通过 POST 信息设置规则,只能通过查询字符串。
Fiddler 绝对可以根据 POST 正文的内容返回自动生成的响应,您根本无法使用 UI 来做到这一点。单击规则 > 自定义规则,然后在 OnBeforeRequest 处理程序中输入您的脚本。
if (oSession.uriContains("postpage.aspx") && oSession.utilFindInRequest("mypostname=value")) { oSession["x-replywithfile"] = "C:\\fakeresponse.htm"; }
对于复杂的东西,我推荐 http::recorder 和 www::mechanize (PERL 模块),请参阅这篇文章作为示例。
但对于更简单的东西,我使用curl和/或快速 PHP 脚本
高温高压
C。