Laravel php artisan 显示 JWT 错误
Posted
技术标签:
【中文标题】Laravel php artisan 显示 JWT 错误【英文标题】:Laravel php artisan shows error of JWT 【发布时间】:2016-10-23 03:59:08 【问题描述】:对于任何 php artisan 命令,我都收到以下错误。我正在使用 laravel/dingo 包。
执行了以下导致错误的步骤
Loading composer repositories with package information
Updating dependencies (including require-dev)
- Removing rap2hpoutre/laravel-log-viewer (v0.6.1)
- Removing dingo/blueprint (v0.1.5)
- Installing dingo/blueprint (v0.1.6)
Downloading: 100%
- Removing dingo/api (dev-master 8cd1a6c)
- Installing dingo/api (v1.0.0-beta3)
Downloading: 100%
- Removing cartalyst/support (v1.1.2)
- Installing cartalyst/support (v1.2.0)
Downloading: 100%
Writing lock file
Generating autoload files
> php artisan optimize
composer update
> php artisan clear-compiled
[Tymon\JWTAuth\Exceptions\JWTException]
The token could not be parsed from the request
然后任何 php artisan 命令都显示“无法从请求中解析令牌”错误
出了什么问题。好困惑:(
【问题讨论】:
【参考方案1】:我遇到了同样的错误 - 这是因为我在我的 UserController 中使用了一个构造函数,我有一个 getAuthenticatedUser 方法调用: $user = JWTAuth::parseToken()->authenticate()
然后在我的构造函数中设置 $this->user = $this->getAuthenticatedUser(); ——这让工匠们大吃一惊。除了删除构造函数之外,我还没有找到解决方法,如果有人有更好的建议,我也想知道。
【讨论】:
以上是关于Laravel php artisan 显示 JWT 错误的主要内容,如果未能解决你的问题,请参考以下文章
Laravel php artisan 显示另一个弹出窗口,这是一个错误吗?
Laravel:“$ php artisan route:list”在 App\Http\Controllers\API 中不显示路由列表
“php artisan migrate”显示“没有要迁移的东西”
Laravel - php artisan migrate 不起作用
php artisan migrate 不适用于 Laravel 5.4 中的 XAMPP
在输入'php artisan storage:link'命令后,如何使用Laravel链接存储文件夹在Heroku上显示图像?