On Windows, cURL may fail with an error like this:
curl: (35) schannel: next InitializeSecurityContext failed: SEC_E_INVALID_TOKEN (0x80090308) - The token supplied to the function is invalid
Among other causes, this may happen if you treat a HTTP server as HTTPS, e.g. running commands like curl https://cohost.org:80.
Note that "HTTPS" proxy servers commonly respond in clear-text HTTP only; this includes the proxy server implemented by Fiddler Classic, and a command like curl --proxy https://127.0.0.1:8888 https://cohost.org will fail in the same way.
