Skip to content
| Marketplace
Sign in
Visual Studio Code>Programming Languages>Clia REST ClientNew to Visual Studio Code? Get it now.
Clia REST Client

Clia REST Client

Cris Liao

|
216 installs
| (1) | Free
REST Client for Visual Studio Code with URL Signature
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

Clia REST Client

Clia REST Client is a personal temporary VSCode plugin, forked from REST Client, Thanks!

Added Features

URL Signature

URL Signature method like AliYun's: https://help.aliyun.com/document_detail/30563.htm. The signature algorithm is configurable. Configuration contains two parts:

  • Url Sign Configuration: Configuration for the signature algorithm and names.
  • Url Sign Key Secrets: Key and secret pairs for use.

You should disable it in the configuration if you don't want to use this function, the default is enabled.

The default configuration is our's use case.

An example AliYun's signature algorithm configuration:

{
    "enableUrlSign": true,
    "algorithm": {
        "step1OrderParams": true,
        "step1UrlEncodeParams": true,
        "step1PercentEncode": true,
        "step1AddEqual": true,
        "step1AddAnd": true,
        "step2SeparatorAnd": true,
        "step2AddHttpMethod": true,
        "step2AddPercentEncodeSlash": true,
        "step2PercentEncode": true,
        "step3ComputeAlgorithm": "hmacsha1",
        "step3SecretAppend": "&",
        "step3TextAlgorithm": "base64"
    },
    "keyParamName": "AccessKeyId",
    "signParamName": "Signature"
}

step3ComputeAlgorithm supports: md5 | hmacsha1

step3TextAlgorithm supports: hex | base64

  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft