0

我已经按照本教程 https://tutsforweb.com/restful-api-in-laravel-56-using-jwt-authentication/ 它工作正常,但是当我尝试运行时

php工匠路线:列表

我得到这个错误,

  Tymon\JWTAuth\Exceptions\JWTException  : The token could not be parsed from the request

  at F:\My_Projects\Laravel\api-laravel-jwt\vendor\tymon\jwt-auth\src\JWT.php:185
    181|      */
    182|     public function parseToken()
    183|     {
    184|         if (! $token = $this->parser->parseToken()) {
  > 185|             throw new JWTException('The token could not be parsed from the request');
    186|         }
    187|
    188|         return $this->setToken($token);
    189|     }

  Exception trace:

  1   Tymon\JWTAuth\JWT::parseToken()
      F:\My_Projects\Laravel\api-laravel-jwt\vendor\laravel\framework\src\Illuminate\Support\Facades\Facade.php:223

  2   Illuminate\Support\Facades\Facade::__callStatic("parseToken", [])
      F:\My_Projects\Laravel\api-laravel-jwt\app\Http\Controllers\ProductController.php:14

  Please use the argument -v to see more details.

我一直在尝试解决它,但无法成功,有什么帮助吗?

这是一个带有我的代码的 github 仓库:-

https://github.com/Imohamedgabr/laravel-5.7-jwt-starter

4

1 回答 1

2

在产品控制器中,在这部分:-

public function __construct()
{
    $this->user = JWTAuth::parseToken()->authenticate();
}

它调用解析令牌,这就是它转到 jwt auth 解析令牌并在那里失败的原因。因此,虽然没有提供经过身份验证的用户,但它失败了。希望这可以帮助。

于 2018-11-17T16:01:58.717 回答