Send GET HTTPS request with custom headers PHP
问题 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(