码迷,mamicode.com
首页 > 其他好文 > 详细

fiddler 保存请求数据并发送到自己的服务器接口

时间:2019-11-16 00:38:28      阅读:204      评论:0      收藏:0      [点我收藏+]

标签:func   tps   notify   get   url   before   自己的   new   data   

搜索 OnBeforeResponse 方法,再方法后面添加如下代码:

 

    if (oSession.fullUrl.Contains("https://mp.weixin.qq.com/mp/")){
            //通过ajax发送到服务端
            var xhr = new ActiveXObject(‘Microsoft.XMLHTTP‘);
            var url = ‘http://domain.com/notify_url‘;
            //发送的数据
            var data = ‘{"response":"‘+ oSession.GetResponseBodyAsString() +‘","url":"‘+ oSession.url +‘","headers":"‘+ oSession.oRequest.headers +‘","raw":"‘+ oSession.GetRequestBodyAsString() +‘"}‘;
   
            //不需要返回值所以写啦个空回调
            xhr.onreadystatechange = function() {}
            xhr.open(‘POST‘, url, true);
            xhr.setRequestHeader("Content-Type", "application/json");
            xhr.setRequestHeader("X-Requested-With", "XMLHttpRequest");
            xhr.send(data);
        }        

 

fiddler 保存请求数据并发送到自己的服务器接口

标签:func   tps   notify   get   url   before   自己的   new   data   

原文地址:https://www.cnblogs.com/rubekid/p/11870149.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!