We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e0b5ed commit da30a66Copy full SHA for da30a66
src/Services/InfoProviderSystem/Providers/LCSCProvider.php
@@ -382,11 +382,11 @@ public function searchByKeywordsBatch(array $keywords): array
382
]);
383
} else {
384
// Search API call for other terms
385
- $responses[$keyword] = $this->lcscClient->request('GET', self::ENDPOINT_URL . "/search/global", [
+ $responses[$keyword] = $this->lcscClient->request('POST', self::ENDPOINT_URL . "/search/v2/global", [
386
'headers' => [
387
'Cookie' => new Cookie('currencyCode', $this->settings->currency)
388
],
389
- 'query' => [
+ 'json' => [
390
'keyword' => $keyword,
391
392
0 commit comments