+2
src/Auth/TokenRefresher.php
+2
src/Auth/TokenRefresher.php
···
13
13
{
14
14
public function __construct(
15
15
protected DPoPClient $dpopClient,
16
+
protected ClientMetadataManager $metadata,
16
17
) {}
17
18
18
19
/**
···
47
48
->post($tokenUrl, [
48
49
'grant_type' => 'refresh_token',
49
50
'refresh_token' => $refreshToken,
51
+
'client_id' => $this->metadata->getClientId(),
50
52
]);
51
53
52
54
if ($response->failed()) {