gpt4 book ai didi

php - header 参数发布请求 php ( curl )

转载 作者:可可西里 更新时间:2023-11-01 16:49:00 27 4
gpt4 key购买 nike

我正在尝试构建一个 php 脚本来发布我正在使用 culr 的其他网络服务,如您所见,问题出在 API 网络服务器文档中,要求我发送一些 header 参数,字面意思“对于每个 http 调用,您都需要添加以下 header 参数:API用户ID,API密码和响应类型"

所以我的问题是如何将自定义参数添加到我的 header 请求中?。谢谢

<?php 
function curl_post($url, array $post = NULL, array $options = array())
{
$defaults = array(
CURLOPT_POST => 1,
CURLOPT_HEADER => 0,
CURLOPT_URL => $url,
CURLOPT_FRESH_CONNECT => 1,
CURLOPT_RETURNTRANSFER => 1,
CURLOPT_FORBID_REUSE => 1,
CURLOPT_TIMEOUT => 4,
CURLOPT_SSL_VERIFYHOST=>0,
CURLOPT_POSTFIELDS => http_build_query($post)
);

$ch = curl_init();
curl_setopt_array($ch, ($options + $defaults));
if( ! $result = curl_exec($ch))
{
trigger_error(curl_error($ch));
}
curl_close($ch);
return $result;
}

$result=curl_post('https://www.serverPath/serverAPI',array('a'=>'a','b'=>'b'));

echo $result;

?>

最佳答案

您是否尝试过将这些参数添加到 httpheader 中?

curl_setopt($tuCurl, CURLOPT_HTTPHEADER, array(
"Content-Type: text/xml",
"APIuserID: $id",
"APIpassword: $password",
"Content-length: ".strlen($data)
));

此外,您还可以使用:http://php.net/manual/en/soapheader.soapheader.php

关于php - header 参数发布请求 php ( curl ),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11882989/

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