Laravel get request headers(Laravel 获取请求头)
问题描述
我正在使用 POSTMAN 将 GET 请求发送到带有包含授权的标头的 api 中.
I am using POSTMAN to send a GET request into the api with a header containing Authorization.
我知道数据头有效,因为如果无效,路由会返回 401 错误.
I know the data header works because if it doesn't the route returns a 401 error.
我想像这样获得授权标头:
I wanted to get the Authorization header like so:
$access_token = Request::header('Authorization');
但注意到它返回NULL.
But noticed that it returns NULL.
所以我试图用以下方法捕捉值:
So I tried to catch the values with:
die(var_dump(Request::header()));
并注意到它不包含任何授权标头.只需托管到 cookie 标头.
And noticed that it doesn't contain any Authorization header. Just host to cookie headers.
更新
应该得到Authorization: Bearer ACCESS TOKEN
推荐答案
你用的是什么 POSTMAN 版本?
What POSTMAN Version did you use?
您是在本地计算机还是托管服务器上,某些托管公司不允许使用 AUTHORIZATION HEADER.
Are you on your local machine or managed server, some hosting companies don't allow AUTHORIZATION HEADER.
.htaccess 修改
RewriteEngine On
RewriteCond %{HTTP:Authorization} .
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
这篇关于Laravel 获取请求头的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Laravel 获取请求头
基础教程推荐
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- 使用 PDO 转义列名 2021-01-01
- PHP 守护进程/worker 环境 2022-01-01
- HTTP 与 FTP 上传 2021-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01