コード例 #1
0
ファイル: User.php プロジェクト: defektrain/sgm-rest
 /**
  * @inheritdoc
  */
 public static function findIdentityByAccessToken($token, $type = null)
 {
     $oauthToken = OauthAccessTokens::findOne(['access_token' => $token]);
     if ($oauthToken) {
         return static::findOne(['id' => $oauthToken->user_id]);
     }
     //        throw new NotSupportedException('"findIdentityByAccessToken" is not implemented.');
 }
コード例 #2
0
ファイル: User.php プロジェクト: hiqdev/hi3a
 /**
  * @inheritdoc
  */
 public static function findIdentityByAccessToken($access_token, $type = null)
 {
     $token = OauthAccessTokens::findOne(compact('access_token'));
     return static::findByUsername($token->user_id);
 }
コード例 #3
0
ファイル: OauthController.php プロジェクト: hiqdev/hiam-core
 public function findToken($access_token)
 {
     return OauthAccessTokens::findOne($access_token);
 }