问题
I want to send a HTTPS request in PHP with custom parameters. I tried with curl method :
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://myurl.com/item/books');
curl_setopt($ch,CURLOPT_HEADER,array('Token: 888888888'));
$content = curl_exec($ch);
echo $content;
$info = curl_getinfo($ch);
print_r($info['request_header']);
My problem is that my request (GET) is in HTTPS and I can't send the header parameter Token: 888888. I have tried with:
curl_setopt($ch,CURLOPT_HTTPHEADER,array('Token: 888888888'));
And it doesn't work because my request is in HTPPS. I need the proper method to send my HTTPS request with custom headers. (Many example in Internet are for HTTP request not HTTPS)
Thanks.
回答1:
You are missing a curl option for handling HTTPS request that is
CURLOPT_SSL_VERIFYPEER : FALSE to stop cURL from verifying the peer's certificate
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
来源:https://stackoverflow.com/questions/42022695/send-get-https-request-with-custom-headers-php