美文网首页
fidder抓取微信公众号链接保存到本地

fidder抓取微信公众号链接保存到本地

作者: 是东东 | 来源:发表于2021-04-27 17:36 被阅读0次
1、

2、Ctrl + F ----> function OnBeforeResponse



3、粘贴以下代码到图下位置
        try{
            if(oSession.fullUrl.Contains("mp.weixin.qq.com")) {
                if(oSession.fullUrl.Contains("getmediadata")) {
                    return;
                }
                oSession.utilDecodeResponse();
                var fso;
                var file;
                fso = new ActiveXObject("Scripting.FileSystemObject");
                file = fso.OpenTextFile("C:/Users/Administrator/OneDrive/all_huaqiu/secondary_project/wechat_spider/logs/response.txt",8 ,true, true); 
                file.writeLine("" + oSession.responseCode);
                file.writeLine(oSession.GetResponseBodyAsString());
                file.close();
            }
        }catch(e: Exception){
            }

相关文章

网友评论

      本文标题:fidder抓取微信公众号链接保存到本地

      本文链接:https://www.haomeiwen.com/subject/rxrprltx.html