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