diff --git a/src/VK/Client/VKApiRequest.php b/src/VK/Client/VKApiRequest.php index f6dbd17..e322e01 100755 --- a/src/VK/Client/VKApiRequest.php +++ b/src/VK/Client/VKApiRequest.php @@ -87,7 +87,7 @@ public function post(string $method, string $access_token, array $params = array } try { - $response = $this->client->post("{$this->host}/{$method}?" . http_build_query($params)); + $response = $this->client->post("{$this->host}/{$method}",['form_params' => $params]); } catch (GuzzleException $exception) { throw new VKClientException($exception); }