搜尋

首頁  >  問答  >  主體

解決Slim 4身份驗證中間件的重定向問題

<p>我正在尝试使用中间件将未经身份验证的用户重定向到Google API身份验证。 如果我直接访问身份验证系统(通过访问/auth路由),Google部分可以工作,并且用户会被发送到我的主页。但是,如果我访问受中间件保护的页面,我会得到一个空白页面。</p><p> 这是我的中间件:</p> <pre class="brush:php;toolbar:false;"><?php declare(strict_types=1); namespace AppMiddleware; use SlimPsr7Response; use PsrHttpMessageServerRequestInterface as Request; use PsrHttpServerRequestHandlerInterface as RequestHandler; class Auth { public function __invoke(Request $request, RequestHandler $handler): Response { if (!isset($_SESSION['access_token'])) { $response = new Response(); $response->withHeader('Location', '/auth')->withStatus(302); } else { $response = $handler->handle($request); } return $response; } }</pre> <p>由于Google部分可以工作,问题肯定在我的中间件中,对吗?这也意味着中间件的else部分是起作用的。 有什么建议吗?</p><p> TIA</p>
P粉949848849P粉949848849516 天前608

全部回覆(1)我來回復

  • P粉278379495

    P粉2783794952023-08-14 00:35:56

    原來是因為我寫這段程式碼的時候還沒有喝足夠的咖啡。 我忘記將變異的反應設定為一個變數。
    在我的if語句內應該是:

    #
    $response = new Response();                                                                                                                                                                                                                    
            $response = $response->withHeader('Location', '/auth')->withStatus(302);

    第二行的 "$response =" 是我遺漏的部分。
    希望這對其他人有幫助。

    回覆
    0
  • 取消回覆