我将 Authorization: Bearer { Token } 作为 HTTP 请求传递给我的 Symfony Rest Controller。
我的请求:
GET /app_dev.php/api/members HTTP/1.1
Host: localhost
Authorization: Bearer 123456789
Cache-Control: no-cache
Content-Type: application/x-www-form-urlencoded
在我的控制器内部:
$this->getRequest()->headers;
由于某种原因,当我使用 Symfony 的 Request 方法时,我的控制器无法使用 Authorization 标头。当我使用 PHP 的 getallheaders() 时,授权标头按预期显示。关于为什么 Symfony 没有看到它的任何想法?
谢谢