听了:https://v.qq.com/x/page/f0816egftuw.html
npm 是 node package manager,NodeJs下的包管理器。安装完 nodeJs 后(node-v10.16.0-x64.msi),就同时安装了。
postman 可以用 newman 从命令行 trigger Postman 的 Json 脚本。
而 newman 的安装可以采用 npm install -g newman 来完成。
这里有两个 API 站点,可以用来练习 postman 用:
https://www.v2ex.com/p/7v9tec53
https://www.v2ex.com/API/topics/hot.Json
还有这个 kuaIDi100 网站,提供 type 和 postID ,就可以提交 get 情况,练习 postman. 比如:
http://www.kuaIDi100.com/query?type=tiantian&postID=669472972063
tests["http响应码需要时200"] = responseCode.code === 200;
var res = JsON.parse(responseBody);
console.log(res.length);
tests["需要返回首页十条数据"] = res.length === 10;
pm.test("返回正确的状态码",function()
{
pm.expect(pm.response).to.have.status(200);
});
postman 的 API 站点:
以上是内存溢出为你收集整理的一些 postman全部内容,希望文章能够帮你解决一些 postman所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)