1 | <?php |
||
8 | class RefreshToken extends POSTEntryPoint { |
||
9 | |||
10 | protected $_REQUIRED_DATA = array( |
||
11 | 'grant_type', |
||
12 | 'refresh_token', |
||
13 | 'client_id', |
||
14 | 'client_secret' |
||
15 | ); |
||
16 | |||
17 | /** |
||
18 | * Configure Grant Type to be refresh_token |
||
19 | * @param mixed $data |
||
20 | * @return array|mixed |
||
21 | */ |
||
22 | protected function configureData($data) { |
||
30 | |||
31 | } |