当前位置:网站首页>Postman download localization of installation and use
Postman download localization of installation and use
2022-08-02 08:37:00 【m0_67401499】
I. Download
- Official website download address: https://www.getpostman.com

Second, installation
- postman installation: double-click to run, the automatic installation is completed.
- Install the Postman plugin newman.
- Make sure node.js is installed first, you can check it in the terminal npm -v.
- Then npm install -g newman.
- newman -v If you see the version number, the installation is successful!

Three, Sinicization
- Download a Chinese package from https://github.com/hlmd/Postman-cn/releases
- After decompressing the Chinese patch package app.zip, copy the app folder to the resources directory of Postman to complete the localization.Reference C:UsersAdministratorAppDataLocalPostmanapp-9.22.2 esources

Fourth, use
- Request call: Copy the url into the input box, select the format, and then click send to call.Body is the returned parameter, which can determine whether the call is successful.
Note: If it is an https request, you can remove the ssl verification in the settings, or refresh the Google Chrome first, and click Continue to go to call it. - Save request: convenient for the next call;
Export and load request: After changing the environment, just load the previous request to have the same configuration as before. - Code generation: Click Generate Code and select the development language to generate code.
- postman realizes file upload:
post method -> body select form-data format -> key select file type, select file, and then click send to realize file upload. - postman stress test.
- postman as a mock server:
Create a mock service - set the request method, request path and return value - test - copy the mock url to the browser and add the set request service pathVisit - click example to add modified examples.
Let me introduce myself first. The editor graduated from Jiaotong University in 2013. I worked in a small company and went to big factories such as Huawei and OPPO. I joined Ali in 2018, until now.I know that most junior and intermediate java engineers want to upgrade their skills, they often need to explore their own growth or sign up to study, but for training institutions, the tuition fee is nearly 10,000 yuan, which is really stressful.Self-learning that is not systematic is very inefficient and lengthy, and it is easy to hit the ceiling and the technology stops.Therefore, I collected a "full set of learning materials for java development" for everyone. The original intention is also very simple. I hope to help friends who want to learn by themselves but don't know where to start, and at the same time reduce everyone's burden.Add the business card below to get a full set of learning materials
边栏推荐
- [OC学习笔记]Block三种类型
- 抓包工具Charles修改Response步骤
- JSP页面中page指令有哪些属性及方法可使用呢?
- C语言基础_共用体
- .NET静态代码织入——肉夹馍(Rougamo) 发布1.1.0
- Application and case analysis of CASA model and CENTURY model
- High imitation [Huawei consumer business official website] and wonderful animation analysis: practice embedding JS code in low-code platform
- JSP中page指令的import命令具有什么功能呢?
- MySQL 中 count() 和 count(1) 有什么区别?哪个性能最好?
- 小说里的编程 【连载之二十三】元宇宙里月亮弯弯
猜你喜欢

MySQL事务隔离级别详解

IO进程线程->进程->day4

unity pdg 设置隐藏不需要的节点以及实现自动勾选自动加载项
![Three types of [OC learning notes] Block](/img/40/edf59e6e68891ea7c9ab0481fe7bfc.png)
Three types of [OC learning notes] Block

如何做好项目管理

Redisson报异常attempt to unlock lock, not locked by current thread by node id解决方案

解决IDEA安装安装插件慢问题

ip地址那点事(二)

How Engineers Treat Open Source --- A veteran engineer's heartfelt words

Biotin-C6-amine|N-生物素基-1,6-己二胺|CAS:65953-56-2
随机推荐
如何将项目部署到服务器上(全套教程)
知识点滴 - 为什么一般不用铜锅做菜
PostgreSQL学习总结(11)—— PostgreSQL 常用的高可用集群方案
按键控制流水灯(计时器)
高仿【华为消费者业务官网】和精彩动画剖析:练习在低代码平台中嵌入JS代码
AttributeError: module ‘clr‘ has no attribute ‘AddReference‘
Technology Cloud Report: To realize the metaverse, NVIDIA starts from building an infrastructure platform
PyCharm使用教程(详细版 - 图文结合)
nodejs 简介
[ansible] playbook explains the execution steps in combination with the project
基本SQL语句(一篇就够了)
OneNote Tutorial, How to Create More Spaces in OneNote?
为什么都推荐使用wordpress, 而不是 phpcms 这些国内的CMS呢?
C语言_指针
USACO美国信息学奥赛竞赛12月份开赛,中国学生备赛指南
离线部署通过tiup 配置好topology.yaml文件指定PD TV TIDBserver 是不是会自动在其他机器创建好对应得模块?
IO进程线程->进程->day4
@RequestBody使用
第3周学习:ResNet+ResNeXt
postman使用方法