在标头php curl中发送身份验证

2022-01-11 00:00:00 authentication header curl php

尝试在 PHP 中做同样的事情 - 但失败了:):

trying to do the equivalent of this in PHP - and failing :):

curl -H "X-abc-AUTH: 123456789" http://APIserviceProvider=http://www.cnn.com;

123456789"是 API 密钥.命令行语句工作正常.

"123456789" is the API key. The command line statement works fine.

PHP 代码(不起作用):

PHP code (does not work):

$urlToGet = "http://www.cnn.com";
$service_url = "http://APIserviceProvider=$urlToGet";

//header

 $contentType = 'text/xml';          //probably not needed
 $method = 'POST';                   //probably not needed
 $auth = 'X-abc-AUTH: 123456789';    //API Key

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $service_url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLINFO_HEADER_OUT, true);

//does not work



// curl_setopt($ch, CURLOPT_HTTPHEADER, Array('Content-type: ' . 
   // $contentType . '; auth=' . $auth));

    //works!   (THANKS @Fratyr for the clue):

    curl_setopt($ch, CURLOPT_HTTPHEADER, Array($auth));

//this works too (THANKS @sergiocruz):

curl_setopt($ch, CURLOPT_HTTPHEADER, array(
  'Some_custom_header: 0',
  'Another_custom_header: 143444,12'
));


//exec

$data = curl_exec($ch);
echo $data;
curl_close($ch);

有什么想法吗?

推荐答案

为了将自定义标题添加到您的 curl 中,您应该执行以下操作:

In order to get custom headers into your curl you should do something like the following:

curl_setopt($ch, CURLOPT_HTTPHEADER, array(
  'Some_custom_header: 0',
  'Another_custom_header: 143444,12'
));

因此,以下内容应该适用于您的情况(假设 X-abc-AUTH 是您需要发送的唯一标头):

Therefore the following should work in your case (given X-abc-AUTH is the only header you need to send over):

curl_setopt($ch, CURLOPT_HTTPHEADER, array(
  'X-abc-AUTH: 123456789' // you can replace this with your $auth variable
));

如果您需要额外的自定义标头,您所要做的就是添加到 curl_setopt 内的数组中.

If you need additional custom headers, all you have to do is add on to the array within the curl_setopt.

我希望这会有所帮助:)

I hope this helps :)

相关文章