mirror of
https://github.com/elyby/oauth2-server.git
synced 2025-05-31 14:12:07 +05:30
Added access_token_expire option (for refresh token support)
This commit is contained in:
@@ -13,10 +13,11 @@ class Server
|
|||||||
private $db = null;
|
private $db = null;
|
||||||
|
|
||||||
private $config = array(
|
private $config = array(
|
||||||
'response_types' => array(
|
'response_types' => array(
|
||||||
'code'
|
'code'
|
||||||
),
|
),
|
||||||
'scope_delimeter' => ','
|
'scope_delimeter' => ',',
|
||||||
|
'access_token_expire' => 0
|
||||||
);
|
);
|
||||||
|
|
||||||
public $exceptionCodes = array(
|
public $exceptionCodes = array(
|
||||||
|
Reference in New Issue
Block a user