2

我正在使用 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.
     *

我错过了什么。请指导。就像令牌没有设置一样。

4

1 回答 1

1

我遇到了你的问题,因为我遇到了同样的问题,我刚刚通过将以下代码添加到我的 .htaccess 来解决它

# Authorization header
RewriteCond %{HTTP:Authorization} ^(.*)
RewriteRule .* - [e=HTTP_AUTHORIZATION:%1]
于 2018-05-22T20:49:48.057 回答