Answers for "ssl verify curl"

PHP
0

php curl ssl verify

curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, TRUE);
Posted by: Guest on December-23-2020
0

validate ssl certificate on website using curl

curl --cert-status -v https://www.google.com 2>&1 | awk 'BEGIN { cert=0 } /^\* Server certificate:/ { cert=1 } /^\*/ { if (cert) print }'
Posted by: Guest on May-28-2020

Browse Popular Code Answers by Language