一些 postman

聽了:https://v.qq.com/x/page/f0816egftuw.htmlhtml

 

 

npm 是 node package manager, Nodejs下的包管理器。安裝完 nodejs 後(node-v10.16.0-x64.msi),就同時安裝了。
postman 能夠用 newman 從命令行 trigger  Postman 的 json 腳本。
而 newman 的安裝能夠採用 npm install -g newman 來完成。

這裏有兩個 api 站點,能夠用來練習 postman 用:
node

https://www.v2ex.com/p/7v9tec53
https://www.v2ex.com/api/topics/hot.json
npm

還有這個 kuaidi100 網站,提供 type 和 postid ,就能夠提交 get 狀況,練習 postman. 好比:
json

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);
});api

 

 postman 的 api 站點:
post

 

https://www.getpostman.com/docs/postman/scripts/postman_sandbox_api_reference
 
相關文章
相關標籤/搜索