About 1,310,000 results
Open links in new tab
  1. Does curl have a timeout? - Unix & Linux Stack Exchange

    I would expect curl to have a connection timeout (if nothing else, the OS and its TCP/IP stack almost certainly does), but it might not have a read timeout once the connection has been …

  2. linux - how to use curl to verify if a site's certificate has been ...

    The curl manpage specifies the '--crlfile' option which exists exactly for this purpose. Also, curl is compiled with openssl and uses it for its crypto-related operations (including certificates) - it's …

  3. How to fix curl sslv3 alert handshake failure? - Unix & Linux Stack ...

    How do I ignore or force the certificate using curl command line? When using wget seems to work fine. Also works when testing with openssl as below: $ openssl s_client -connect …

  4. stdout - Can I make cURL fail with an exitCode different than 0 if …

    I was always assuming that when curl got an HTTP 500 response it was returning an exit code that meant failure (!= 0), but that seems to be not the case. Is there a way I can I make cURL …

  5. download - Downloading file from FTP using cURL - Super User

    curl: Remote file name has no length! curl: try 'curl --help' or 'curl --manual' for more information curl: (6) Could not resolve host: myfile.raw; No data record of requested type I've tried some …

  6. Does curl have a --no-check-certificate option like wget?

    I am trying to make a curl request to one of our local development servers running a dev site with a self-signed SSL cert. I am using curl from the command line. I saw some blog posts …

  7. Why can't cURL properly verify a certificate on Windows?

    In that case, you will want to generate your own curl-ca-bundle.crt file. You can use certreq.exe and openssl.exe to export such a cert from the IE/Windows store, and then convert-to-pem …

  8. How do I pipe the output of a curl command to an environment …

    I have a REST endpoint that I can get an access token from. To get the access token (JSON web token, JWT) and export that value as an environment variable, I do the following. export …

  9. Getting curl to output HTTP status code? - Super User

    I'm using curl at the command line on Linux to issue HTTP requests. The response bodies are printed to standard out, which is fine, but I can't see from the man page how to get curl to print …

  10. why would curl and wget result in a 403 forbidden?

    A HTTP request may contain more headers that are not set by curl or wget. For example: Cookie: this is the most likely reason why a request would be rejected, I have seen this happen on …