How to upload files to password protected HTTPS site using CURL? - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T21:38:58Zhttp://stackoverflow.com/feeds/question/362473http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/362473/how-to-upload-files-to-password-protected-https-site-using-curl0How to upload files to password protected HTTPS site using CURL?FRESHTER2008-12-12T11:03:12Z2008-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#3625242Answer by mat for How to upload files to password protected HTTPS site using CURL?mat2008-12-12T11:37:49Z2008-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>