GuzzleHttp 在使用本地主机时挂起
2022-08-31 00:37:19
这是一个简单的代码片段,但这只是挂起并且没有响应。
$httpClient = new GuzzleHttp\Client(); // version 6.x
$headers = ['X-API-KEY' => '123456'];
$request = $httpClient->request('GET', 'http://localhost:8000/BlogApiV1/BlogApi/blogs/', $headers);
$response = $client->send($request, ['timeout' => 2]);
echo $request->getStatusCode();
echo $request->getHeader('content-type');
echo $request->getBody();
die();
任何指点都非常感谢。当我使用我的用户名和密码尝试使用github api时,我确实得到了200响应和大量信息。