postman使用小结(一)
postman可以用来做接口测试。
下面是使用的基本步骤:
1新建http请求;
2设置请求类型get/post/put/delete...;
3设置请求的url;
4设置请求的Header头部信息,请求的内容,可以使json,xml等格式;
5点击Send按钮,发送请求;
举例:
1.发送get请求
2.发送post请求,Header信息同get请求,这里不再贴图
3.发送put请求,这里使用的是JSON格式的请求文本
4.发送delete请求