使用FiddlerScript(JScript.Net)将JSON响应更改为null

时间:2018-09-25 01:46:00

标签: json fiddler jscript.net

我正在使用Fiddler的“ FiddlerScript”来修改来自Web服务器的响应,以便可以在我的应用中测试响应。

这是我的OnBeforeResponse函数:

static function OnBeforeResponse(oSession: Session) {
    // This code was already here, leaving it
    if (m_Hide304s && oSession.responseCode == 304) {
        oSession["ui-hide"] = "true";
    }
    // Here is new code to modify server's response
    if(oSession.HostnameIs("mydomain.com") && oSession.uriContains("config")) {
        // Color this response, so we can spot it in Fiddler
        oSession["ui-backcolor"] = "lime";

        // Convert the request body into a string
        var oBody = System.Text.Encoding.UTF8.GetString(oSession.responseBodyBytes);

        var j: Fiddler.WebFormats.JSON.JSONParseResult;
        // Convert the text into a JSON object
        // In this case our JSON root element is a dictionary (HashTable)
        j = Fiddler.WebFormats.JSON.JsonDecode(oBody);

        // Inside of our dictionary, we have an array (ArrayList) called "placements"
        var testObject = j.JSONObject["test"];
        /* Change this to different values, e.g. "0.0", 0.0, null, "", etc. */
        /* This works */
        testObject["consent_version"] = "";
        /* This works */
        testObject["consent_version"] = 0.0;
        /* This works */
        testObject["consent_version"] = "0.0";
        /* This fails */
        testObject["consent_version"] = null;

        // Convert back to a byte array
        var modBytes = Fiddler.WebFormats.JSON.JsonEncode(j.JSONObject);

        // Convert json to bytes, storing the bytes in request body
        var mod = System.Text.Encoding.UTF8.GetBytes(modBytes);
        oSession.ResponseBody = mod;
    }
}

我可以将testObject [“ consent_version”]设置为除null以外的任何值。如果将其设置为null,则Fiddler会创建没有任何值的JSON,并且JSON的格式错误,如下所示:

"consent_version":,

请注意,“ consent_version”之后和逗号之前没有任何值。

有人知道我如何使用FiddlerScript(基于JScript.Net)设置空值吗?

1 个答案:

答案 0 :(得分:0)

我知道这是一个古老的问题,但是我遇到了这个问题,试图做完全相同的事情,最终弄清楚了...希望这对以后的工作有所帮助。

首先,不要将其设置为null,而是将其设置为undefined。 Chrome开发者工具仍将其显示为返回null。

然后,代替

var modBytes = Fiddler.WebFormats.JSON.JsonEncode(j.JSONObject);
var mod = System.Text.Encoding.UTF8.GetBytes(modBytes);
oSession.ResponseBody = mod;

使用:

var modBytes = Fiddler.WebFormats.JSON.JsonEncode(j.JSONObject);
oSession.utilSetResponseBody(modBytes);

您应该已经准备就绪。

这是一个完整的例子:

static function OnBeforeResponse(oSession: Session) {
    if (m_Hide304s && oSession.responseCode == 304) {
        oSession["ui-hide"] = "true";
    }
    
    if (true && (oSession.host=="domain.com") && (oSession.PathAndQuery.indexOf("/GetDataFromServer")>-1) && (oSession.oResponse.headers.ExistsAndContains("Content-Type", "json")) ){
        oSession["ui-bold"]="true";
        
        // Convert the request body into a string
        oSession.utilDecodeResponse();
        var oBody = System.Text.Encoding.UTF8.GetString(oSession.responseBodyBytes);

        // FiddlerObject.log(oBody);
        
        var j: Fiddler.WebFormats.JSON.JSONParseResult;
        j = Fiddler.WebFormats.JSON.JsonDecode(oBody);
        
        // FiddlerObject.log(j.JSONObject[0]["PropertyName"]);
        j.JSONObject[0]["PropertyName"] = undefined;
        
        // Convert back to a byte array
        var modBytes = Fiddler.WebFormats.JSON.JsonEncode(j.JSONObject);
        oSession.utilSetResponseBody(modBytes);
    }
}