当前位置: 首页>>代码示例>>PHP>>正文


PHP UserResponseInterface::getExpiresIn方法代码示例

本文整理汇总了PHP中HWI\Bundle\OAuthBundle\OAuth\Response\UserResponseInterface::getExpiresIn方法的典型用法代码示例。如果您正苦于以下问题:PHP UserResponseInterface::getExpiresIn方法的具体用法?PHP UserResponseInterface::getExpiresIn怎么用?PHP UserResponseInterface::getExpiresIn使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在HWI\Bundle\OAuthBundle\OAuth\Response\UserResponseInterface的用法示例。


在下文中一共展示了UserResponseInterface::getExpiresIn方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: loadUserByOAuthUserResponse

 public function loadUserByOAuthUserResponse(UserResponseInterface $response)
 {
     $user = $this->userRepository->findOneBy(['spotifyId' => $response->getUsername()]);
     if (!$user instanceof SpotifyUser) {
         $user = new SpotifyUser($response->getUsername());
     }
     $user->setSpotifyId($response->getUsername())->setDisplayName($response->getRealName())->setAccessToken($response->getAccessToken())->setAccessTokenExpires(time() + $response->getExpiresIn())->setRefreshToken($response->getRefreshToken())->setProfileUrl($response->getResponse()['href']);
     $responseHasImages = isset($response->getResponse()['images']) && is_array($response->getResponse()['images']);
     $responseImageExists = array_key_exists('url', $response->getResponse()['images'][0]);
     if ($responseHasImages && $responseImageExists) {
         $user->setImageUrl($response->getResponse()['images'][0]['url']);
     }
     $this->em->persist($user);
     $this->em->flush();
     return $this->loadUserByUsername($user->getUsername());
 }
开发者ID:palmfjord,项目名称:sr-playlist,代码行数:16,代码来源:SpotifyOAuthUserProvider.php

示例2: updateAuthorization

 /**
  * Updates an existing authorization with data from the resource owner
  *
  * @param Authorization         $authorization Authorization
  * @param UserResponseInterface $response      Response of the resource owner
  *
  * @return Authorization
  */
 protected function updateAuthorization(Authorization $authorization, UserResponseInterface $response)
 {
     $expirationDate = $this->getExpirationDate($response->getExpiresIn());
     $authorization->setAuthorizationToken($response->getAccessToken())->setExpirationDate($expirationDate);
     return $authorization;
 }
开发者ID:axelvnk,项目名称:bamboo,代码行数:14,代码来源:OAuthUserProvider.php


注:本文中的HWI\Bundle\OAuthBundle\OAuth\Response\UserResponseInterface::getExpiresIn方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。