postman之post请求

使用postman模拟post请求方法:
1、添加新的collection后,点击Add a request,添加一个请求
postman之post请求_第1张图片

2、通过F12抓取到请求的接口,比如添加分组
postman之post请求_第2张图片

3、看到的Request URL即为请求的URL,请求方式选择post,URL粘贴至request URL位置
postman之post请求_第3张图片

4、在抓取到的接口右键,复制as cURL
postman之post请求_第4张图片

5、回到postman,点击新添加的请求,点击import->Raw test,粘贴刚复制的内容后点击continus
postman之post请求_第5张图片

6、此时点击该条请求的Body->raw可以看到刚导入的信息
postman之post请求_第6张图片

7、点击Body下的form-data,根据抓到的接口的参数一一增加(此步骤非必须,对于粘贴cURL无法全部时,一些要加入的请求参数可以手动添加进来)
postman之post请求_第7张图片

8、增加完成后,点击send请求返回200,且可以看到预期的响应,证明接口请求正常,可以点击save保存该请求内容
postman之post请求_第8张图片

另外:对于get请求,参数直接在Params添加既可。

你可能感兴趣的:(postman)