欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Postman——API开发协作平台

程序员文章站 2022-03-25 16:59:50
...

简介

Windows无法直接通过curl发送GET、POST请求(除非安装curl for Windows)

Postman是一款API开发协作平台,用于接口测试十分方便




安装

下载 Postman 直接安装即可




界面

Postman——API开发协作平台




初试

用Tornado构建API用于GET、POST请求测试

import tornado.web
import tornado.ioloop


class MainHandler(tornado.web.RequestHandler):
    def get(self):
        name = self.get_argument('name', default='')
        phone = self.get_argument('phone', default='')
        self.write('GET {} {}'.format(name, phone))

    def post(self):
        name = self.get_argument('name', default='')
        phone = self.get_argument('phone', default='')
        self.write('POST {} {}'.format(name, phone))


if __name__ == '__main__':
    print('http://localhost:5555/')
    app = tornado.web.Application([
        (r'/', MainHandler),
    ])
    app.listen(5555)
    tornado.ioloop.IOLoop.current().start()



GET请求,参数填Query Params

http://localhost:5555/?name=Xiao ming&phone=13000000000

Postman——API开发协作平台



POST请求,参数填Body的form-data

http://localhost:5555/

Postman——API开发协作平台




扩展阅读

  1. 只用命令行的话——Windows使用curl发送GET、POST请求
  2. 需要中文尝试——ApiPost
    Postman——API开发协作平台




参考文献

  1. Postman | The Collaboration Platform for API Development
  2. Postman教程大全
  3. Postman Learning Center
相关标签: 其他 API