gpt4 book ai didi

php - 如何将自定义 header 传递给 RESTful 调用?

转载 作者:行者123 更新时间:2023-12-02 23:45:18 25 4
gpt4 key购买 nike

我的网站需要连接一些 Web 服务 API。大多数 API 都涉及这样的内容:

$data = file_get_contents("http://www.someservice.com/api/fetch?key=1234567890

但一项 Web 服务需要在自定义 HTTP header 中设置 API key 。如何同时向此 API url 发出请求并传递自定义 header ?

最佳答案

您可以像这样使用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);
?>

关于php - 如何将自定义 header 传递给 RESTful 调用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10524543/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com