當前位置: 首頁>>代碼示例>>PHP>>正文


PHP JWTAuth::setToken方法代碼示例

本文整理匯總了PHP中Tymon\JWTAuth\Facades\JWTAuth::setToken方法的典型用法代碼示例。如果您正苦於以下問題:PHP JWTAuth::setToken方法的具體用法?PHP JWTAuth::setToken怎麽用?PHP JWTAuth::setToken使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Tymon\JWTAuth\Facades\JWTAuth的用法示例。


在下文中一共展示了JWTAuth::setToken方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: headers

 /**
  * Return request headers needed to interact with the API.
  *
  * @return Array array of headers.
  */
 protected function headers($user = null)
 {
     $headers = ['Accept' => 'application/json'];
     if (!is_null($user)) {
         $token = JWTAuth::fromUser($user);
         JWTAuth::setToken($token);
         $headers['Authorization'] = 'Bearer ' . $token;
     }
     return $headers;
 }
開發者ID:poiuty,項目名稱:midas,代碼行數:15,代碼來源:TestCase.php

示例2: handle

 /**
  * Handle an incoming request.
  *
  * @param  \Illuminate\Http\Request  $request
  * @param  \Closure  $next
  * @return mixed
  */
 public function handle($request, \Closure $next, $isRest = "Rest")
 {
     Log::debug("CheckJWT.handle.begin");
     $isAjax = $isRest == "Rest";
     Log::warning("Rest call:" . $isAjax);
     $jwt = DragoCookie::getCookie();
     $token = null;
     if ($jwt != null) {
         $token = JWTAuth::setToken($jwt);
     } else {
         $token = JWTAuth::getToken();
     }
     if ($token == null) {
         Log::warning("CheckJWT.handle.token invalid");
         if ($isAjax) {
             return response("token invalid", 401);
         } else {
             return redirect('login');
         }
     }
     try {
         $user = $token->authenticate();
         Log::debug("CheckJWT.handle.user:" . print_r($user, true));
     } catch (TokenExpiredException $e) {
         Log::warning("CheckJWT.handle.token expired");
         if ($isAjax) {
             return response("token expired", 401);
         } else {
             return redirect('login');
         }
     } catch (JWTException $e) {
         Log::warning("CheckJWT.handle.token invalid");
         if ($isAjax) {
             return response("token invalid", 401);
         } else {
             return redirect('login');
         }
     }
     if (!$user) {
         Log::warning("CheckJWT.handle.user not found");
         if ($isAjax) {
             return response("token invalid", 401);
         } else {
             return redirect('login');
         }
     }
     Log::debug("CheckJWT.handle.end");
     return $next($request);
 }
開發者ID:edragonetti,項目名稱:empa-Assign,代碼行數:56,代碼來源:CheckJWT.php

示例3: setToken

 /**
  * Set the token.
  *
  * @param  Token|string $token
  *
  * @return JwtGuard
  */
 public function setToken($token)
 {
     $this->token = $token;
     JWTAuth::setToken($token);
     return $this;
 }
開發者ID:imjerrybao,項目名稱:jwt-auth-guard,代碼行數:13,代碼來源:JwtAuthGuard.php


注:本文中的Tymon\JWTAuth\Facades\JWTAuth::setToken方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。