1
0
Fork 0
mirror of synced 2024-06-13 16:24:47 +12:00

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_secret' => $this->appSecret,
'grant_type' => 'refresh_token',
'code' => $code,
'code' => $refreshToken,
'redirect_uri' => $this->callback,
])
);