Skip to main content

Using an HTTP proxy

Command-line interface

cli-kintone record <subcommand> --proxy <proxy URL>
VariableDescription
--proxyThe URL of the proxy server

Environment variable

VariableDescription
HTTPS_PROXYThe URL of the proxy server
The command-line option is prioritized over this variable.

Connection details

We use HTTP Tunneling for the request.

  • The client sends CONNECT request to the proxy server
  • The Proxy server creates a TCP connection to the destination server
  • The client sends an encrypted request to the destination server via the proxy server

Sequence of HTTP Tunneling

refs.

Implementation

We use TooTallNate/proxy-agents for this function.