无法通过PHP而是使用Postman接收标头信息

时间:2019-04-01 21:30:26

标签: php curl php-curl

我正在尝试在POST请求的标头中获取令牌。使用Postman,它可以工作,但是当我在PHP中运行时,我得到了正确的内容,但无法提取标题信息。

我已经复制了Postman中生成的PHP代码,但是无法提取标题信息。我只得到内容。

我使用的代码:

<?php
$curl = curl_init();
curl_setopt_array($curl, array(
  CURLOPT_URL => "https://xxxx.yyyy.xy/xxxxxx/xxxxxxxxxxx",
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => "",
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 30,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => "POST",
  CURLOPT_POSTFIELDS => "",
  CURLOPT_HTTPHEADER => array(
    "Authorization: Basic XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
    "Content-Type: application/x-www-form-urlencoded",
    "Postman-Token: XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
    "cache-control: no-cache"
  ),
));

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
  echo "cURL Error #:" . $err;
} else {
  echo $response;
}
?>

标题应包含“令牌”。 我无法收到任何标题信息。

1 个答案:

答案 0 :(得分:-1)

我找到了解决问题的方法:

char string[12]; // this will allocate memory(12 bytes)
string = "hello world";

char* string_ptr; // this is only a pointer (no memory allocation)