我正在使用 JWTAuth OctoberCMS API 插件对用户进行身份验证。当我注册用户或使用邮递员登录时,请求返回一个令牌。但是,当我尝试访问经过身份验证的路由时,例如:
Route::get('api/v1/todos',
'Wafush\Maswali\Controllers\Todos@index')->middleware('\Tymon\JWTAuth\Middleware\GetUserFromToken');
我收到{"error":"token_not_provided"}异常,但用户已通过身份验证。
再次,当我尝试返回已登录的用户对象时,例如:
$user = JWTAuth::authenticate();
return $user;
我收到以下错误:
A token is required
C:\xampp\htdocs\myapp\plugins\vdomah\jwtauth\vendor\tymon\jwt-auth\src\JWTAuth.php line 299
Type
Undefined
Exception
Tymon\JWTAuth\Exceptions\JWTException
{
if ($token) {
return $this->setToken($token);
} elseif ($this->token) {
return $this;
} else {
throw new JWTException('A token is required', 400);
}
}
/**
* Set the request instance.
*
我错过了什么。请指导。就像令牌没有设置一样。