gpt4 book ai didi

php - 如何在 php 中使用 curl 将访问 key 作为 HTTP header 传递

转载 作者:塔克拉玛干 更新时间:2023-11-03 06:09:22 24 4
gpt4 key购买 nike

如何在 PHP 中发送下面提到的 CURL 请求?我将在 php 中使用哪些函数?

$ curl -H 'X-Sifter-Token: 343b1b831066a40e308e0af92e0f06f0' \
-H 'Accept: application/json' \
'http://example.sifterapp.com/api/projects'

我试过这段代码..但它不起作用..请做有需要的

$curlString = "";

$curlString .= "-H \"X-Sifter-Token: 343b1b831066a40e308e0af92e0f06f0\" \";

$curlString .= "-H \"Accept: application/json\" \";

$url="http://example.sifterapp.com/api/projects";


$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_TIMEOUT, 60);
curl_setopt($ch, CURLOPT_HTTPHEADER, $curlString);
$data = curl_exec($ch);
if (curl_errno($ch)) {
print "Error: " . curl_error($ch);
} else {
// Show me the result
var_dump($data);
curl_close($ch);
}

最佳答案

您没有正确使用 CURLOPT_HTTPHEADER。来自手册:

http://php.net/manual/en/function.curl-setopt.php

CURLOPT_HTTPHEADER An array of HTTP header fields to set, in the format array('Content-type: text/plain', 'Content-length: 100')

所以你需要:

  curl_setopt($ch, CURLOPT_HTTPHEADER, array(
'X-Sifter-Token: 343b1b831066a40e308e0af92e0f06f0',
'Accept: application/json',
));

关于php - 如何在 php 中使用 curl 将访问 key 作为 HTTP header 传递,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12512706/

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