можно например через вызов: \Illuminate\Support\Facades\Auth::onceUsingId($userId);
Дело в том что у меня даже не вызывается jwt-auth миддлвар. у меня страница улетает в редирект. А редирект происходит из Exceptions\Handler.php /** * Convert an authentication exception into an unauthenticated response. * * @param \Illuminate\Http\Request $request * @param \Illuminate\Auth\AuthenticationException $exception * @return \Illuminate\Http\Response */ protected function unauthenticated($request, AuthenticationException $exception) { if ($request->expectsJson()) { return response()->json(['error' => 'Unauthenticated.'], 401); } return redirect()->guest(route('login')); }
редирект происходит потому что ты не указал, что ты ждешь в качестве ответа json, т.е. не указал заголовок Accept: application/json почему ты решил что он не заходит в jwt-auth, возможно не заходит, потому что есть приоритетные посредники и auth более приоритетен чем jwt-auth см. https://laravel.com/docs/10.x/middleware#sorting-middleware
Обсуждают сегодня