We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 23e1595 commit 91b0db8Copy full SHA for 91b0db8
Module.php
@@ -34,6 +34,9 @@ public function getServer($force = false)
34
$server = new \OAuth2\Server($storages, $this->options);
35
36
$server->addGrantType(new \OAuth2\GrantType\UserCredentials($storages['user_credentials']));
37
+ $server->addGrantType(new \OAuth2\GrantType\RefreshToken($storages['refresh_token'], [
38
+ 'always_issue_new_refresh_token' => true
39
+ ]));
40
41
$this->_server = $server;
42
}
0 commit comments