About 11,400,000 results
Open links in new tab
  1. 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 a JSON d...

  2. Using cURL with a username and password? - Stack Overflow

    This curl method keeps credentials out of the history and process status, but leaves username and password in cleartext in the my-password-file creating another attack vector - worse than than having …

  3. How to send a header using a HTTP request through a cURL call?

    Dec 10, 2008 · There is a good way to learn how to use curl for http requests by examples. Download the newest version of Postman, make any http request configuration as you wish at user interface …

  4. Passing API key with HTTP header in cURL - Stack Overflow

    Nov 28, 2016 · 38 I have an API Proxy in Apigee which is authenticated with an API key. I'm passing the key with my HTTP request header using cURL, with this command:

  5. How to set the authorization header using cURL - Stack Overflow

    May 3, 2024 · How do I pass authorization header using cURL? ( executable in /usr/bin/curl).

  6. 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 = 12345

  7. Curl to return http status code along with the response

    The format can be specified as a literal "string", or you can have curl read the format from a file with "@filename" and to tell curl to read the format from stdin you write "@-". The variables present in the …

  8. performing HTTP requests with cURL (using PROXY)

    From the man pages The environment variables can be specified in lower case or upper case. The lower case version has precedence. http_proxy is an exception as it is only available in lower case. Using …

  9. rest - How to do a PUT request with cURL? - Stack Overflow

    Dec 8, 2012 · How do I test a RESTful PUT (or DELETE) method using cURL?

  10. What is the right way to POST multipart/form-data using curl?

    Oct 1, 2013 · When copying POST data with Firefox web console, I also noticed that it was using \n instead of \r\n. Even mitmproxy copy as cURL was using \n so I had to copy the raw request with …