您好我正在测试端点,当我运行php testing.php时出现此错误。任何帮助将不胜感激。
Fatal error: Uncaught exception 'Guzzle\Http\Exception\CurlException' with message '[curl] 7: Failed to connect to localhost port 8000: Connection refused [url] http://localhost:8000/api/programmers' guzzle\guzzle\src\Guzzle\Http\Curl\CurlMulti.php:359 ...
我也尝试过127.0.0.1而且它没有工作
这里是testing.php
<?php
require __DIR__.'/vendor/autoload.php';
use Guzzle\Http\Client;
// create our http client (Guzzle)
$client = new Client('http://localhost:8000', array(
'request.options' => array(
'exceptions' => false,
)
));
$nickname = 'ObjectOrienter'.rand(0, 999);
$data = array(
'nickname' => $nickname,
'avatarNumber' => 5,
'tagLine' => 'a test dev!'
);
$request = $client->post('/api/programmers', null, json_encode($data));
$response = $request->send();
echo $response;
echo "\n\n";
答案 0 :(得分:2)
如果您使用的是Linux,请确保服务器正在使用
运行/etc/init.d/httpd status
答案 1 :(得分:1)
检查您的localhost:8000服务器是否正在运行。
如果不是,请使用以下命令从终端启动它。
转到项目的根文件夹并输入,
php -S localhost:8000 -t .\public
答案 2 :(得分:0)
如果您正在运行localhost,请执行以下操作:
php -S localhost:8000
然后从不同的环境(如vagrant)运行curl,然后在您的vagrant上的localhost与本地计算机上的localhost不同。
答案 3 :(得分:0)
当http://localhost:8000或http://127.0.0.1:8000都没有奏效时,我也面临同样的问题。我使用我的网络IP解决了它,如
192.168.0.3:8000