Hello, When ever I try to refresh a token I get unauthorized. I've logged back into my application and all tokens were updated. I waiting until the access token expired and tried running a script to generate a new access token
$response = Http::post("https://apisandbox.dev.clover.com/oauth/v2/refresh",[ 'client_id'=>env('CLOVER_APP_ID'), 'refresh_token'=> $token->refresh_token, ]);
it always returns unauthorized. Refresh token expires next year. Access token expired 1 hour ago. Not sure what I'm doing wrong.