Fiddler 2:通过FiddlerScript重新发送请求

时间:2014-08-18 10:16:57

标签: request response fiddler fiddlercore fiddler-dev

Hello StackOverflow人员,

我是Fiddler 2的新手,但我似乎相处得很好。虽然我有一个我似乎无法解决的问题。

我想要做的事实上非常简单。 我想拦截一个请求,让它运行,但如果响应不适合我,我希望它重新发送请求并使初始请求不存在。 这使用FiddlerScript。

为什么这很有用:在您发送请求但每次响应不同的情况下。你只想要正确的回应。

到目前为止我所拥有的:

 static function OnBeforeResponse(oSession: Session)
 {
 if (oSession.uriContains("/stackoverflowexample"))
    {
        if(oSession.GetRequestBodyAsString().Contains("GetRandomItem"))
        {

            if(oSession.GetResponseBodyAsString().ToString().Contains("ItemID"))
            {
                var body = oSession.GetResponseBodyAsString();
                var item = 0;
                for(var i = 0; i< body.Length; i++)
                {
                    if(i < body.Length -7)
                    {
                        if(body.Substring(i, 6) == "ItemID")
                        {
                            item= Convert.ToInt32(body.Substring(i+7,1));
                        }
                    }
                }
                MessageBox.Show(item.ToString());
                if(item < 2536) //for example itemid must be higher than 2536
                {
                    //STOP / MAKE this session nonexcistent
                    //RESEND CURRENT REQUEST to get new response

                    oSession.state = SessionStates.SendingRequest;
                    FiddlerObject.utilIssueRequest(oSession.oRequest.ToString());

                }
            }
        }
    }
  }

欢迎使用Fiddlerscript的每种可能的解决方案。

谢谢Stackoverflow cummunity! (和Fiddler开发人员)

1 个答案:

答案 0 :(得分:1)

将Session的状态设置回SendingRequest并不是你想要的。

以下是您尝试做的事情的一个例子。 https://groups.google.com/forum/#!searchin/httpfiddler/retry/httpfiddler/3OZQVmQZdR0/uvqTyl3w2BAJ

if (!String.IsNullOrEmpty(oSession["X-RetryNumber"])) return;
for(var iRetry: int = 1; iRetry < 5; ++iRetry)
 { 
   var oSD = new System.Collections.Specialized.StringDictionary();
    oSD.Add("X-RetryNumber", iRetry.ToString());
    var newSession = FiddlerApplication.oProxy.SendRequestAndWait(oSession.oRequest.headers, oSession.requestBodyBytes, oSD, null);
    if (200 == newSession.responseCode) // <--- UPDATE THIS TO WHATEVER YOU LIKE
    {
       // If we were successful on a retry, bail here!
       oSession.oResponse.headers = newSession.oResponse.headers;
       oSession.responseBodyBytes = newSession.responseBodyBytes;
      oSession.oResponse.headers["Connection"] = "close"; // Workaround limitation

     break;
    }
}