14.工具 - http请求

作者: 风云雄霸天下123456 | 来源:发表于2018-03-07 21:59 被阅读8次

参考

  1. httpbin - Http Client Testing Service - 请求模拟服务

0. 本地搭建请求模拟服务 - httpbin

  • 参考:
    1. http库测试工具 - httpbin
  • 说明:
    1. 其是Python+Flask写的
    2. 源码:httpbin - Github
    3. 部署步骤见参考文章
    4. 前置条件:安装python,pip。同时最好切换pip源为国内源
  • 部署:
    # 安装httpbin
    pip install httpbin
    
    # 安装服务器软件gunicorn
    pip install gunicorn
    
    # 运行httpbin,在8000端口
    gunicorn -b :8000 httpbin:app
    
    # [2015-06-27 03:16:52 +0000] [18568] [INFO] Starting gunicorn 19.3.0
    # [2015-06-27 03:16:52 +0000] [18568] [INFO] Listening at: http://0.0.0.0:8000 (18568)
    # [2015-06-27 03:16:52 +0000] [18568] [INFO] Using worker: sync
    # [2015-06-27 03:16:52 +0000] [18573] [INFO] Booting worker with pid: 18573
    

1. 请求模拟服务


2. 请求模拟服务 - 状态

  • 说明:
    可以模拟各种http请求返回状态
  • 网址:
    1. httpstat

相关文章

网友评论

    本文标题:14.工具 - http请求

    本文链接:https://www.haomeiwen.com/subject/xloztxtx.html