Laravel php工匠显示JWT的错误

时间:2016-06-21 14:28:30

标签: php laravel jwt dingo-api

我收到任何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工匠命令显示“无法从请求中解析令牌”错误

会出现什么问题。如此困惑:(

1 个答案:

答案 0 :(得分:0)

我收到同样的错误 - 因为我在UserController中使用构造函数,我有一个调用的getAuthenticatedUser方法:  $ user = JWTAuth :: parseToken() - > authenticate()

然后在我的构造函数中设置$ this-> user = $ this-> getAuthenticatedUser(); - 这使得工匠投入合适。除了删除构造函数之外,我还没有找到解决方法,如果有人有更好的建议,我也想知道。