mirror of
https://github.com/elyby/oauth2-server.git
synced 2024-11-15 17:56:14 +05:30
Implict grant does not return return refresh tokens
This commit is contained in:
parent
88b01b792a
commit
94a1c18fa9
@ -5,6 +5,7 @@ namespace League\OAuth2\Server\Grant;
|
|||||||
use League\OAuth2\Server\Entities\ClientEntityInterface;
|
use League\OAuth2\Server\Entities\ClientEntityInterface;
|
||||||
use League\OAuth2\Server\Entities\UserEntityInterface;
|
use League\OAuth2\Server\Entities\UserEntityInterface;
|
||||||
use League\OAuth2\Server\Exception\OAuthServerException;
|
use League\OAuth2\Server\Exception\OAuthServerException;
|
||||||
|
use League\OAuth2\Server\Repositories\RefreshTokenRepositoryInterface;
|
||||||
use League\OAuth2\Server\RequestEvent;
|
use League\OAuth2\Server\RequestEvent;
|
||||||
use League\OAuth2\Server\RequestTypes\AuthorizationRequest;
|
use League\OAuth2\Server\RequestTypes\AuthorizationRequest;
|
||||||
use League\OAuth2\Server\ResponseTypes\RedirectResponse;
|
use League\OAuth2\Server\ResponseTypes\RedirectResponse;
|
||||||
@ -23,10 +24,29 @@ class ImplicitGrant extends AbstractAuthorizeGrant
|
|||||||
*/
|
*/
|
||||||
public function __construct(\DateInterval $accessTokenTTL)
|
public function __construct(\DateInterval $accessTokenTTL)
|
||||||
{
|
{
|
||||||
$this->refreshTokenTTL = new \DateInterval('P1M');
|
|
||||||
$this->accessTokenTTL = $accessTokenTTL;
|
$this->accessTokenTTL = $accessTokenTTL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param \DateInterval $refreshTokenTTL
|
||||||
|
*
|
||||||
|
* @throw \LogicException
|
||||||
|
*/
|
||||||
|
public function setRefreshTokenTTL(\DateInterval $refreshTokenTTL)
|
||||||
|
{
|
||||||
|
throw new \LogicException('The Implicit Grant does nto return refresh tokens');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param \League\OAuth2\Server\Repositories\RefreshTokenRepositoryInterface $refreshTokenRepository
|
||||||
|
*
|
||||||
|
* @throw \LogicException
|
||||||
|
*/
|
||||||
|
public function setRefreshTokenRepository(RefreshTokenRepositoryInterface $refreshTokenRepository)
|
||||||
|
{
|
||||||
|
throw new \LogicException('The Implicit Grant does nto return refresh tokens');
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* {@inheritdoc}
|
* {@inheritdoc}
|
||||||
*/
|
*/
|
||||||
|
Loading…
Reference in New Issue
Block a user