且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

VSCode插件 REST Client

更新时间:2022-08-22 14:37:04

快捷键

Win: Ctrl+Alt+R

macOS: Cmd+Alt+R

文档:https://marketplace.visualstudio.com/items?itemName=humao.rest-client

请求文件

test.http

GET https://www.baidu.com/

### 
GET https://httpbin.org/get


### 
POST {{host}}/post
content-type: application/json

{
    "name": "sample",
    "time": "Wed, 21 Oct 2015 18:27:50 GMT"
}

环境变量

.vscode/settings.json

{
  "rest-client.environmentVariables": {
    "$shared": {
      "host": "https://httpbin.org"
    },
    "local": {
      "host": "https://httpbin.org"
    },
    "production": {
      "host": "https://httpbin.org"
    }
  }
}