Browse Source
Merge pull request #209 from ychab/master
openid - minor typo fix, change nothing yet
pull/224/head
Marcos Pereira
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
keycloak/keycloak_openid.py
|
@ -189,7 +189,7 @@ class KeycloakOpenID: |
|
|
payload = {"username": username, "password": password, |
|
|
payload = {"username": username, "password": password, |
|
|
"client_id": self.client_id, "grant_type": grant_type, |
|
|
"client_id": self.client_id, "grant_type": grant_type, |
|
|
"code": code, "redirect_uri": redirect_uri} |
|
|
"code": code, "redirect_uri": redirect_uri} |
|
|
if payload: |
|
|
|
|
|
|
|
|
if extra: |
|
|
payload.update(extra) |
|
|
payload.update(extra) |
|
|
|
|
|
|
|
|
if totp: |
|
|
if totp: |
|
|