Top "Curl" questions

cURL is a library and command-line tool for transferring data using various protocols such as HTTP, FTP and SFTP.

how to use python to execute a curl command

I want to execute a curl command in python. Usually, I just need enter the command in terminal and press …

python curl
How do I make a request using HTTP basic authentication with PHP curl?

I'm building a REST web service client in PHP and at the moment I'm using curl to make requests to …

php rest curl basic-authentication
How can I see the request headers made by curl when sending a request to the server?

I want to see the request headers made by curl when I am sending a request to the server. How …

curl
Unable to resolve "unable to get local issuer certificate" using git on Windows with self-signed certificate

I am using Git on Windows. I installed the msysGit package. My test repository has a self signed certificate at …

windows git curl ssl-certificate msysgit
How to do a PUT request with curl?

How do I test a RESTful PUT (or DELETE) method using curl?

rest http curl
Curl GET request with json parameter

I am trying to send a "GET" request to a remote REST API from Command Prompt via cURL like this: …

json rest curl
How do I measure request and response times at once using cURL?

I have a web service that receives data in JSON format, processes the data, and then returns the result to …

curl time upload download measure
CURL Command Line URL Parameters

I am trying to send a DELETE request with a url parameter using CURL. I am doing: curl -H application/…

http curl
How to use cURL to send Cookies?

I read that Send cookies with curl works, but not for me. I have a REST endpoint as: class LoginResource(…

rest session curl flask session-cookies
Can PHP cURL retrieve response headers AND body in a single request?

Is there any way to get both headers and body for a cURL request using PHP? I found that this …

php http curl