Fix invalid code_challenge_method key.

This commit is contained in:
Erick Torres 2017-06-16 12:03:04 -05:00 committed by Erick Torres
parent 2167edf1d9
commit 880e3b4590

View File

@ -341,7 +341,7 @@ class AuthCodeGrant extends AbstractAuthorizeGrant
'user_id' => $authCode->getUserIdentifier(),
'expire_time' => (new \DateTime())->add($this->authCodeTTL)->format('U'),
'code_challenge' => $authorizationRequest->getCodeChallenge(),
'code_challenge_method ' => $authorizationRequest->getCodeChallengeMethod(),
'code_challenge_method' => $authorizationRequest->getCodeChallengeMethod(),
]
)
),