Fidder的使用

Posted 蚂蚁撼大象

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Fidder的使用相关的知识,希望对你有一定的参考价值。

默认的header是类似这样的

User-Agent: Fiddler 
Host: localhost
Content-Length: 34

只需要改成这样的

User-Agent: Fiddler 
Content-Type: application/x-www-form-urlencoded
Host: localhost
Content-Length: 34
然后我们在request body里都这么写post串,服务端就可以接收post值了
city=‘dfdafdsfsaf‘&mm="1232323123"

神马,还想传JSON?,so easy,把header里改成这样

 

User-Agent: Fiddler 
Content-Type: application/json
Host: localhost

requset body里就这么写
{     
"city": "dfdafdsfsaf",
"mm": "1232323123"
}
在Http中,POST参数的请求格式是由Content-type选项控制的。比较常见两种Content-type选项和数据格式我用下表列出:

content-type 参数格式
application/x-www-form-urlencoded info=10001030A&itme=wwwdn_06RMB
application/json {"info":"10001030A","item":"wwwdn_06RMB"}




 

以上是关于Fidder的使用的主要内容,如果未能解决你的问题,请参考以下文章

通过fidder抓npm拉包协议

Python3爬虫使用Fidder实现APP爬取

fidder 使用教程

fidder模拟2G和3G网络进行弱网测试

Fidder常见问题

Fidder详解之get和post请求