1

我的要求是知道 fiddler 中记录的请求中的 post 参数是否已编码,以便我可以在 Jmeter 中相应地使用它。

我尝试在 fiddler 中记录一个场景,并且我能够找到发送的请求的 post 参数,但是我无法找到在请求发送到服务器时是否对 post 参数进行了编码。

例如:考虑以下是我捕获的请求的发布数据,它具有三个参数,分别具有各自的值(name1、name2、name3 和 value1、value2、value3)

在此处输入图像描述

假设我使用 Jmeter 捕获相同的请求,我们将很容易知道 post 参数是否被编码为编码?在编码的情况下将检查列,如果未编码,则将不检查。

同样我们可以找到一个post参数是否在fiddler中编码,任何人都可以帮忙。

4

1 回答 1

1

You can check the TextView tab in fiddler which will show you if the parameters are encoded or not, and then apply the same thing to your Jmeter script.

If you cant find that in the TextView tab then check the Raw tab which will show the full request you sent and check there if the parameters were encoded or not.

于 2017-12-13T14:03:39.273 回答