Fix oauth token generation

This commit is contained in:
René Preuß
2019-12-09 22:46:23 +01:00
parent 29a46a9ef9
commit f2d064caef
2 changed files with 2 additions and 4 deletions

View File

@@ -24,8 +24,8 @@ trait OauthTrait
public function retrievingToken(string $grantType, array $attributes): Result
{
try {
$response = $this->client->request('POST', '/oauth/token', $attributes + [
'form_params' => [
$response = $this->client->request('POST', '/oauth/token', [
'form_params' => $attributes + [
'grant_type' => $grantType,
'client_id' => $this->getClientId(),
'client_secret' => $this->getClientSecret(),