如何通过PHP在邮递员中发送邮件头

时间:2019-07-16 13:35:03

标签: php rest postman

我正在创建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
        }

2 个答案:

答案 0 :(得分:0)

有一个名为标头的标签,您可以在其中添加标头。

enter image description here

如果您使用的是fastCGI,则标头会以驼峰形式出现,因此您需要将其用作:

$token=$tokens['Access_token'];

enter image description here

答案 1 :(得分:0)

添加:

header('Content-Type: application/json');

在 web api 中 PHP 代码的顶部