我正在创建Web服务,我想通过Php在邮递员中发送“标头”,我该怎么做?如何在php中使用邮递员发送和获取标头?我尝试使用以下代码,但收到响应“请发送访问令牌”,我该如何解决此问题?提前致谢。 这是我的代码
$tokens=apache_request_headers();
$token=$tokens['access_token'];
if(empty($token))
{
$responseJSON = array("Status" => false,"Message" => "Please enter access token");
header("content-type:application/json");
$response = json_encode($responseJSON);
echo $response;
}
else
{
//your code
}