1

我正在使用dingo/api(内置对jwt-auth的支持)来制作 API。

假设这是我的路线:

$api->group(['prefix' => 'auth', 'namespace' => 'Auth'], function ($api) {
            $api->post('checkPhone', 'LoginController@checkPhone');

            //Protected Endpoints
            $api->group(['middleware' => 'api.auth'], function ($api) {
                $api->post('sendCode', 'LoginController@sendCode');
                $api->post('verifyCode', 'LoginController@verifyCode');

            });
        });

checkPhone具有授权和创建令牌任务的方法如下:

public function checkPhone (Request $request)
        {
            $phone_number = $request->get('phone_number');
            if (User::where('phone_number', $phone_number)->exists()) {

                $user = User::where('phone_number', $phone_number)->first();

                $user->injectToken();

                return $this->response->item($user, new UserTransformer);

            } else {
                return $this->response->error('Not Found Phone Number', 404);
            }
        }

模型上的injectToken()方法是:User

public function injectToken ()
        {
            $this->token = JWTAuth::fromUser($this);
            return $this;
        } 

令牌创建工作正常。

但是当我将它发送到受保护的端点时,总是Unable to authenticate with invalid token会发生。

受保护的端点操作方法是:

public function verifyCode (Request $request)
        {
            $phone_number = $request->get('phone_number');
            $user_code    = $request->get('user_code');

            $user = User::wherePhoneNumber($phone_number)->first();

            if ($user) {
                $lastCode = $user->codes()->latest()->first();

                if (Carbon::now() > $lastCode->expire_time) {
                    return $this->response->error('Code Is Expired', 500);
                } else {
                    $code = $lastCode->code;

                    if ($user_code == $code) {

                        $user->update(['status' => true]);

                        return ['success' => true];
                    } else {
                        return $this->response->error('Wrong Code', 500);
                    }
                }
            } else {
                return $this->response->error('User Not Found', 404);
            }
        }

我用作PostManAPI 客户端并将生成的令牌作为标头发送,如下所示:

Authorization:Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiI5ODkxMzk2MTYyNDYiLCJpc3MiOiJodHRwOlwvXC9hcGkucGFycy1hcHAuZGV2XC92MVwvYXV0aFwvY2hlY2tQaG9uZSIsImlhdCI6MTQ3NzEyMTI0MCwiZXhwIjoxNDc3MTI0ODQwLCJuYmYiOjE0NzcxMjEyNDAsImp0aSI6IjNiMjJlMjUxMTk4NzZmMzdjYWE5OThhM2JiZWI2YWM2In0.EEj32BoH0URg2Drwc22_CU8ll--puQT3Q1NNHC0LWW4

在网络和相关存储库上进行多次搜索后,我找不到解决方案。

你认为什么是问题?

更新 :

我发现 not found 错误是针对 laravel 提供的 loginController 的构造函数:

public function __construct ()
        {
            $this->middleware('guest', ['except' => 'logout']);
        }

因为当我发表评论时,$this->middleware('guest', ['except' => 'logout']);一切都奏效了。但是如果我去掉这行是正确的吗?API的这条线应该如何?

4

3 回答 3

1

将我的 config/api.php 更新为此成功了

// config/api.php
...
  'auth' => [
        'jwt' => 'Dingo\Api\Auth\Provider\JWT'
    ],
...

于 2017-02-12T01:24:11.043 回答
0

正如我之前提到的更新注释问题是我在 LoginController 中使用checkPhoneverifyCode在其构造函数中检查了来宾。

而且因为guest中间件是指\App\Http\Middleware\RedirectIfAuthenticated::class并将登录用户重定向到一个/home目录,而我没有创建它,所以404 error发生了。

现在我只是将这些方法移到了一个UserController没有任何中间件的构造函数中。

于 2016-10-23T07:06:43.460 回答
0

总是值得通读源代码,看看发生了什么。回答: 需要身份验证提供者的标识符才能检索用户。

/**
 * Authenticate request with a JWT.
 *
 * @param \Illuminate\Http\Request $request
 * @param \Dingo\Api\Routing\Route $route
 *
 * @return mixed
 */
public function authenticate(Request $request, Route $route)
{
    $token = $this->getToken($request);

    try {
        if (! $user = $this->auth->setToken($token)->authenticate()) {
            throw new UnauthorizedHttpException('JWTAuth', 'Unable to authenticate with invalid token.');
        }
    } catch (JWTException $exception) {
        throw new UnauthorizedHttpException('JWTAuth', $exception->getMessage(), $exception);
    }

    return $user;
}
于 2018-01-29T00:36:12.863 回答