mirror of
https://github.com/elyby/oauth2-server.git
synced 2024-11-15 17:56:14 +05:30
Store the redirect URI too
This commit is contained in:
parent
cfd1c93a46
commit
0d6c4f65b9
@ -96,7 +96,8 @@ class AuthCodeEntity extends AbstractTokenEntity
|
|||||||
$this->server->getStorage('auth_code')->create(
|
$this->server->getStorage('auth_code')->create(
|
||||||
$this->getId(),
|
$this->getId(),
|
||||||
$this->getExpireTime(),
|
$this->getExpireTime(),
|
||||||
$this->getSession()->getId()
|
$this->getSession()->getId(),
|
||||||
|
$this->getRedirectUri()
|
||||||
);
|
);
|
||||||
|
|
||||||
// Associate the scope with the token
|
// Associate the scope with the token
|
||||||
|
Loading…
Reference in New Issue
Block a user