diff --git a/src/Api/HttpApi.php b/src/Api/HttpApi.php index 2b11be7..a347c01 100644 --- a/src/Api/HttpApi.php +++ b/src/Api/HttpApi.php @@ -116,7 +116,7 @@ abstract class HttpApi protected function httpGet(string $path, array $parameters = [], array $requestHeaders = []): ResponseInterface { if (count($parameters) > 0) { - $path .= '?'.http_build_query($parameters); + $path .= '?'.urldecode(http_build_query($parameters)); } try {