ctrl+shift+p filters: :st2 :st3 :win :osx :linux
浏览

API检查器

ksgy 全部

检查任何API状态并在Sublime Text编辑器状态栏中显示

详情

  • 2014.05.29.11.23.45
  • github.com
  • github.com
  • 10年前
  • 21分钟前
  • 10年前

安装

  • 总计 3K
  • Win 2K
  • Mac 457
  • Linux 335
8月6日 8月5日 8月4日 8月3日 8月2日 8月1日 7月31日 7月30日 7月29日 7月28日 7月27日 7月26日 7月25日 7月24日 7月23日 7月22日 7月21日 7月20日 7月19日 7月18日 7月17日 7月16日 7月15日 7月14日 7月13日 7月12日 7月11日 7月10日 7月9日 7月8日 7月7日 7月6日 7月5日 7月4日 7月3日 7月2日 7月1日 6月30日 6月29日 6月28日 6月27日 6月26日 6月25日 6月24日 6月23日
Windows 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0
Mac 1 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Linux 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

README

源代码
raw.githubusercontent.com

Sublime Text API检查器插件

一个检查API或网站是否正常运行并显示结果的插件。你可以执行类似于SublimeHttpRequester的HTTP调用

灵感来自sublimetext-LondonUnderground :)

示例配置:(api-checker.sublime-settings)

{
    "debug": true,
    "timeout": 30,
    "up_label": "✓",
    "dn_label": "✕",
    "detailed_error": true,
    "urls": [
        {
            "title": "google",
            "request_type": "GET",
            "request_body": [
            ],
            "url": "http://google.com",
        },
        {
            "title": "non-existent",
            "request_type": "POST",
            "request_body": [
                "Access-Control-Request-Headers: accept",
                "Access-Control-Allow-Origin: *",
                "Content-type: application/x-www-form-urlencoded",

                "POST_BODY:",
                "api_key=test_key&getuser=john"
            ],
            "url": "http://some.non-existent.url",
        }
    ]
}

可用选项

  • debug

    显示/隐藏调试信息。将打印出所有请求和响应信息到控制台。

  • timeout

    如何频繁地发起对URL的请求(以秒为单位)

  • up_label

    显示API/网站状态正常的标签

  • dn_label

    显示API/网站状态不正常的标签

  • detailed_error

    显示/隐藏如果网站不通的HTTP错误代码(例如:我的API✕(500))

  • urls

    要检查的API/网站的字典

    • title

      状态栏中显示的标题

    • request_type

      HTTP请求类型:POST/GET/PUT/DELETE

    • request_body

      请求头,POST主体。

      更多信息请见 SublimeHttpRequester

    • url

      请求的URL

许可

The MIT License (MIT)

版权© 2014 ksgy