About 1,150,000 results
Open links in new tab
  1. What is the right way to POST multipart/form-data using curl?

    Oct 1, 2013 · I used this syntax to post a file along with some parameters: curl -v -include --form "key1=value1" --form upload=localfilename URL The file is around 500K in size. …

  2. http method - curl -GET and -X GET - Stack Overflow

    Dec 14, 2011 · Curl offers a series of different http method calls that are prefixed with a X, but also offers the same methods without. I've tried both and I can't seem to figure out the …

  3. rest - How do I POST JSON data with cURL? - Stack Overflow

    I use Ubuntu and installed cURL on it. I want to test my Spring REST application with cURL. I wrote my POST code at the Java side. However, I want to test it with cURL. I am trying to post …

  4. HTTP POST and GET using cURL in Linux - Stack Overflow

    HTTP POST and GET using cURL in Linux [duplicate] Asked 12 years, 9 months ago Modified 6 years, 1 month ago Viewed 1.4m times

  5. CURL ERROR: Recv failure: Connection reset by peer

    One way we can avoid the issue is by adding --retry and --retry-all-errors flags (available in the latest versions of curl) in your curl request so that your curl retries even in the case of …

  6. curl -F what does it mean? php instagram - Stack Overflow

    Jun 2, 2012 · From man curl: -F, --form <name=content> (HTTP) This lets curl emulate a filled-in form in which a user has pressed the submit button. This causes curl to POST data using the …

  7. How can I run multiple curl requests processed sequentially?

    Assuming I'm a big Unix rookie: I'm running a curl request through cron every 15 minutes. Curl basically is used to load a web page (PHP) that given some arguments, acts as a script like: …

  8. curl - SSL cert schannel: disabled automatic use of client certificate ...

    Feb 19, 2023 · You'll need to complete a few actions and gain 15 reputation points before being able to upvote. Upvoting indicates when questions and answers are useful. What's reputation …

  9. Using cURL to upload POST data with files - Stack Overflow

    I would like to use cURL to not only send data parameters in HTTP POST but to also upload files with specific form name. How should I go about doing that ? HTTP Post parameters: userid = …

  10. linux - Running a curl command via bash returned "URL rejected: …

    Apr 25, 2024 · Please don't use eval for things like this, it tends to solve simple problems but cause unexpected weird problems later on, in particular when unexpected shell syntax …