w3cschool 编程狮,随时随地学编程
下载APP
|
登录
个人中心
首页
入门教程
编程课程
特色实战
畅学全站
首页
/
Postman教程
/
Postman 使用 Flows
Postman 使用 Flows
Postman 与Jenkins集成
Postman Flows 概览
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录
Postman 概述
Postman 入门
Postman 安装和更新Postman
Postman 导航
Postman 发送您的第一个请求
Postman 管理您的帐户
Postman 自定义Postman 配置文件
Postman 同步您的工作
Postman 探索公共 API 网络
Postman 创建您的第一个集合
Postman 代理
Postman 使用便签本
Postman 创建工作区
Postman 设置
Postman 导入和导出数据
Postman 使用自定义代理
Postman 排查应用程序问题
Postman 发送请求
postman 构建请求
Postman 授权请求
Postman 接收响应
Postman 在集合中对请求进行分组
Postman 使用变量
Postman 管理环境
Postman 可视化响应
Postman 指定示例
Postman 使用 cookie
Postman 使用证书
Postman 生成客户端代码
Postman 排除故障请求
Postman 捕获请求数据
Postman 捕获请求数据概述
Postman 捕获 HTTP 请求
Postman 捕获 HTTPS 流量
Postman 使用 Postman 拦截器
Postman 同步 cookie
Postman 使用 GraphQL 查询
Postman 使用gRPC 请求
Postman gRPC 概述
Postman 使用 gRPC 请求接口
Postman 调用您的第一个 gRPC 请求
Postman 使用服务定义
Postman gRPC 请求中的脚本
Postman gRPC 测试示例
Postman 沙箱 API
Postman 使用 gRPC 模拟服务器
Postman 使用 gRPC 示例
Postman 了解 gRPC 类型
Postman 使用 WebSocket 请求
Postman 使用 SOAP 请求
Postman 编写脚本
Postman 在 Postman 中编写脚本
Postman 编写预请求脚本
Postman 编写测试
Postman 使用监视器运行测试
Postman 脚本参考
Postman 测试脚本示例
Postman 动态变量
Postman JavaScript 参考
Postman 使用集合
postman 集合概览
Postman 使用集合
Postman 运行集合
Postman 运行集合概述
Postman 使用集合运行器
Postman 安排集合运行
Postman 查看计划的集合运行
Postman 使用监视器安排集合运行
Postman 使用 webhook 触发运行
Postman 构建请求工作流程
Postman 导入数据文件
Postman 使用实时集合
Postman 实时集合概览
Postman 实时集合安装
Postman 更新实时集合
Postman 实时集合设置
Postman 使用Newman CLI
Postman 使用 Newman 在命令行上运行集合
Postman 安装和运行Newman
Postman Newman 命令选项
Postman 在 Newman 中上传文件
Postman 使用Newman定制reporters
Postman Newman与Docker
Postman 持续集成 Postman API
Postman 与 Travis CI 集成
Postman 与Jenkins集成
Postman 使用 Flows
Postman Flows 入门
Postman Flows 概览
Postman Flows 关于块和传递信息
Postman Flows 界面
Postman Flows 教程
Postman Flows 建立你的第一个流程
Postman Flows 在块之间传递数据
Postman Flows 按顺序运行请求
Postman Flows 使用授权
Postman Flows 在请求中使用响应数据
Postman Flow 与webhook结合使用
Postman Flows 创建图表、表格和输出
关闭
MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }