Using an HTTP proxy
Command-line interface
cli-kintone record <subcommand> --proxy <proxy URL>
Variable | Description |
---|---|
--proxy | The URL of the proxy server |
Environment variable
Variable | Description |
---|---|
HTTPS_PROXY | The 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
refs.
Implementation
We use TooTallNate/proxy-agents for this function.