We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8846396 + f69f818 commit 1ef0e74Copy full SHA for 1ef0e74
src/LucaDegasperi/OAuth2Server/Proxies/AuthorizationServerProxy.php
@@ -5,6 +5,7 @@
5
use League\OAuth2\Server\Exception\ClientException;
6
use Exception;
7
use Response;
8
+use Input;
9
10
class AuthorizationServerProxy
11
{
@@ -123,8 +124,11 @@ public function performAccessTokenFlow()
123
124
125
try {
126
127
+ // Get user input
128
+ $input = Input::all();
129
+
130
// Tell the auth server to issue an access token
- $response = $this->authServer->issueAccessToken();
131
+ $response = $this->authServer->issueAccessToken($input);
132
133
} catch (ClientException $e) {
134
0 commit comments