diff --git a/src/GameValidation.php b/src/GameValidation.php index cd88a73..684b997 100644 --- a/src/GameValidation.php +++ b/src/GameValidation.php @@ -33,7 +33,7 @@ protected function request($url, $post = false, $headers = false) if ($post) { $response = $client->request('POST', $url, [ - 'json' => $post, + 'form_params' => $post, ])->getBody()->getContents(); } else { $response = $client->request('GET', $url)->getBody()->getContents();