How to upload files to password protected HTTPS site using CURL? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T21:38:58Z http://stackoverflow.com/feeds/question/362473 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/362473/how-to-upload-files-to-password-protected-https-site-using-curl 0 How to upload files to password protected HTTPS site using CURL? FRESHTER 2008-12-12T11:03:12Z 2008-12-12T11:37:49Z <p>Hi,</p> <p>How can I upload files to a HTTPS site using CURL?</p> <p>The site is also password protected.</p> <p>What's the command line used to upload for that particular site?</p> http://stackoverflow.com/questions/362473/how-to-upload-files-to-password-protected-https-site-using-curl/362524#362524 2 Answer by mat for How to upload files to password protected HTTPS site using CURL? mat 2008-12-12T11:37:49Z 2008-12-12T11:37:49Z <p>Yes, you can,</p> <pre><code>$ curl --user login:password --upload-file your.file.txt https://the.url/where/that/should/go </code></pre> <p>You may need to add <code>--insecure</code> if you don't want cURL to check the certificate chain.</p>