Fixed wrong refresh var for Autodesk

This commit is contained in:
Eldad Fux 2024-04-01 15:10:43 +02:00
parent ffbf3c0058
commit 45a140c1f7

View file

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