我需要为我的网站连接一些 Web 服务 API。大多数 API 都涉及以下内容:
$data = file_get_contents("http://www.someservice.com/api/fetch?key=1234567890
但是一项 Web 服务需要在自定义 HTTP 标头中设置 API 密钥。如何向此 API url 发出请求并同时传递自定义标头?
我需要为我的网站连接一些 Web 服务 API。大多数 API 都涉及以下内容:
$data = file_get_contents("http://www.someservice.com/api/fetch?key=1234567890
但是一项 Web 服务需要在自定义 HTTP 标头中设置 API 密钥。如何向此 API url 发出请求并同时传递自定义标头?
您可以像这样使用stream_context_create:
<?php
$options = array(
'http'=>array(
'method'=>"GET",
'header'=>"CustomHeader: yay\r\n" .
"AnotherHeader: test\r\n"
)
);
$context=stream_context_create($options);
$data=file_get_contents('http://www.someservice.com/api/fetch?key=1234567890',false,$context);
?>
你可以使用卷曲。例如:
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'http://www.someservice.com/api/fetch?key=1234567890');
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Header: value'));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$result = curl_exec($ch);
curl_close($ch);
$context = stream_context_create(array(
'http' => array(
'method' => 'GET',
'header' => 'CUSTOM HEADER HERE',
)
));
$result = file_get_contents($url, false, $context);