1
0
Fork 0
mirror of synced 2024-06-12 07:44:44 +12:00

Merge pull request #7897 from appwrite/fix-authdesk-refresh-var

Fixed wrong refresh var for Autodesk
This commit is contained in:
Eldad A. Fux 2024-04-01 15:25:07 +02:00 committed by GitHub
commit 61f04d5340
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -88,7 +88,7 @@ class Autodesk extends OAuth2
'client_id' => $this->appID,
'client_secret' => $this->appSecret,
'grant_type' => 'refresh_token',
'code' => $code,
'code' => $refreshToken,
'redirect_uri' => $this->callback,
])
);