Martin van de Belt
Results
1
comments of
Martin van de Belt
The authorization code you get back from Revolut through the GET parameter is only valid once. ```php $accessToken = $authProvider->getAccessToken('authorization_code', [ 'code' => $_GET['code'] ]); ``` You'll need to save...