2

私はルーメン(5.2)フレームワークとjwt(1.0)を使用しています。

トークンを取得しましたが、システムから「トークンはブラックリストに登録されています」と表示されるため、トークンを更新できません。どうやって解決したのかわからない。手伝っていただけませんか。

申し訳ありませんが、私の英語はあまり上手ではありません。表現に多少の違いがあるかもしれません。

ルート

$app->group(['prefix' => 'auth', 'namespace' => '\App\Http\Controllers'], function () use ($app) {
    $app->post('/signin', 'AuthController@signin');
    $app->put('/refresh', ['middleware' => ['before' => 'jwt.auth', 'after' => 'jwt.refresh'], 'uses' => 'AuthController@refresh']);
});

ログイン

public function signin(Request $request)
{
    $this->validate($request, [
        'email'    => 'required|email|max:255',
        'password' => 'required'
    ]);

    try {

        if ($token = $this->jwt->attempt($request->only(['email', 'password']))) {
            return $this->json([
                'token' => $token
            ]);
        }

        return $this->json([], 403, $this->_lang['signin_incorrect']);

    } catch (JWTException $e) {
        return $this->json([], 500, $e->getMessage());
    }

}

リフレッシュ

public function refresh()
{

    try {
        $this->jwt->setToken($this->jwt->getToken());

        if($this->jwt->invalidate()) {
            return $this->json([
                'token' => $this->jwt->refresh()
            ]);
        }

        return $this->json([], 403, $this->_lang['token_incorrect']);


    } catch (JWTException $e) {
        return $this->json([], 500, $e->getMessage());
    }
}

認証サービス プロバイダー

public function boot()
{
    // Here you may define how you wish users to be authenticated for your Lumen
    // application. The callback which receives the incoming request instance
    // should return either a User instance or null. You're free to obtain
    // the User instance via an API token or any other method necessary.

    $this->app['auth']->viaRequest('api', function ($request)
    {
        return \App\Models\User::where('email', $request->input('email'))->first();
    });
}
4

1 に答える 1

1

私はこの問題を解決しました。

jwt.refresh最初にミドルウェアを削除しました。次に、JWT MANAGER を使用してトークンを更新します。

これは今のコードです

$app->group(['prefix' => 'auth', 'namespace' => '\App\Http\Controllers'], function () use ($app) {

    $app->post('/signin', 'AuthController@signin');
    $app->put('/refresh', 'AuthController@refresh');

});

コントローラ

return $this->json([
            'token' => $this->manager->refresh($this->jwt->getToken())->get()
        ]);
于 2016-08-22T04:18:43.480 に答える