如何在邮件到达服务器之前更改帖子?

时间:2012-04-18 17:59:10

标签: fiddler

尝试编写我的第一个小提琴脚本。

如何在邮件到达服务器之前更改邮件正文?

我的意思是,我填写表单,点击提交,然后暂停以更改我想要的内容,最后发送到服务器。

我发现此脚本可以更改响应,但我想更改请求。

if (oSession.HostnameIs("www.bayden.com") && oSession.oResponse.headers.ExistsAndContains("Content-Type","text/html")){
  oSession.utilDecodeResponse();
  oSession.utilReplaceInResponse('<b>','<u>');
}

1 个答案:

答案 0 :(得分:4)

试试这个

if (oSession.uriContains("/myposturl")) {
   if (oSession.HTTPMethodIs("POST")){
      oSession["x-breakrequest"]="pause";
   }
}

OnBeforeRequest