Skip to content

Commit 5e31d6c

Browse files
authored
Fix Etsy's x-api-key value (#1426)
1 parent 93a0570 commit 5e31d6c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Etsy/Provider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ protected function getUserByToken($token)
3838
$response = $this->getHttpClient()->get('https://openapi.etsy.com/v3/application/users/'.$tokenData[0], [
3939
RequestOptions::HEADERS => [
4040
'Authorization' => 'Bearer '.$token,
41-
'x-api-key' => $this->clientId,
41+
'x-api-key' => $this->clientId.':'.$this->clientSecret,
4242
],
4343
]);
4444

0 commit comments

Comments
 (0)