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.
1 parent bc128ee commit 27a67d1Copy full SHA for 27a67d1
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
{
@@ -70,8 +71,11 @@ public function performAccessTokenFlow()
70
71
72
try {
73
74
+ // Get user input
75
+ $input = Input::all();
76
+
77
// Tell the auth server to issue an access token
- $response = $this->authServer->issueAccessToken();
78
+ $response = $this->authServer->issueAccessToken($input);
79
80
} catch (ClientException $e) {
81
0 commit comments