常用的两种:

第一种默认的

对应URL为www 的要用请求头为:Content-Type: application/x-www-form-urlencoded

请求参数为 :param1=1234&param2=12345

注:有些接口是指定用这种的第二方式并不能模拟请求。

Fiddler Debugger post请求

Fiddler Debugger post请求

第二种

对应URL为 的要是请求头为:Content-Type: application/x-www-form-urlencoded

请求参数为 :{"param1":"1234","param2":"12345"}

Fiddler Debugger post请求

Fiddler Debugger post请求

 

转载于:https://my.oschina.net/huangguangsheng/blog/2249198

相关文章:

  • 2021-11-19
  • 2022-12-23
  • 2022-12-23
  • 2021-06-21
  • 2021-11-20
  • 2021-10-25
  • 2021-04-06
猜你喜欢
  • 2021-06-14
  • 2021-04-24
  • 2021-12-05
相关资源
相似解决方案