I am trying to connect to application on localhost which uses SSL. I am using Mac OS X Mavericks. The error I am getting is following:
Error sending cURL ge
In some cases will be better to use standard curl (eg if you develop on Mac code for Linux or *BSD). In this case you can do like that:
Install Homebrew
Install curl with standard certificates support (no more Keychain certs).
brew install curl --with-openssl && brew link curl --force
Install root CA certs from http://curl.haxx.se/ca/cacert.pem into /usr/local/etc/openssl/certs/cacert.pem
Add into your ~/.bash_profile
export CURL_CA_BUNDLE=/usr/local/etc/openssl/certs/cacert.pem
After 4 steps you can use curl with certificates from file, not from Keychain.