Top "Curl" questions

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

CURL to access a page that requires a login from a different page

I have 2 pages: xyz.com/a and xyz.com/b. I can only access xyz.com/b if and only …

linux bash cookies curl http-authentication
How do I deal with certificates using cURL while trying to access an HTTPS url?

I am getting the following error using curl: curl: (77) error setting certificate verify locations: CAfile: /etc/ssl/certs/ca-certificates.crt …

api curl https
How do I install cURL on Windows?

I have followed all the instructions here: http://www.tonyspencer.com/2003/10/22/curl-with-php-and-apache-on-windows/ to install & config apache get the PHP5 …

php windows curl windows-xp installation
Making a cURL call in C#

I want to make the following curl call in my C# console application: curl -d "text=This is a block …

c# .net http curl
How can you debug a CORS request with cURL?

How can you debug CORS requests using cURL? So far I couldn't find any way to "simulate" the preflight request .

curl cors
PHP cURL GET request and request's body

i'm trying using cURL for a GET request like this: function connect($id_user){ $ch = curl_init(); $headers = array( 'Accept: …

php curl http-get
Display curl output in readable JSON format in Unix shell script

In my Unix shell script, when I execute a curl command, the result will be displayed as below which I …

json shell curl
How do I pipe or redirect the output of curl -v?

For some reason the output always gets printed to the terminal, regardless of whether I redirect it via 2> or &…

linux unix curl
Composer install error - requires ext_curl when it's actually enabled

I'm trying to install Facebook PHP SDK with Composer. This is what I get $ composer install Loading composer repositories with …

php windows curl facebook-php-sdk composer-php
Execute curl command within a Python script

I am trying to execute a curl command within a python script. If I do it in the terminal, it …

python curl pycurl