403 调用 api.weather.gov 使用 Buzz 客户端/ https

403 calling api.weather.gov using Buzz client w/ https

尝试使用 curl/file_get_contents 在我的 Symfony 应用程序中使用 Buzz 检索数据,就像您在此处看到的那样:

https://api.weather.gov/points/44.3537,-73.8636/forecast/hourly

无论如何,我似乎收到 403 Forbidden 错误,我想知道是否有人有任何建议?

    $location = sprintf(
        '/points/%f,%f/forecast/hourly', $this->latitude, $this->longitude
    );

    $request  = new Request('GET', $location, 'https://api.weather.gov');
    $response = new Response();

    try {
        $this->httpClient->send($request, $response);
    } catch (\Exception $e) {
        throw new ServiceResponseException('Failed to send Request', 0, $e);
    }

    if (!$response->isSuccessful()) {
        throw new ServiceResponseException('Unsuccessful Response', $response->getStatusCode());
    }

    return $response->getContent();

在 Buzz 的 FileGetContents 中 class

$url = $request->getHost().$request->getResource();

$url 的计算结果为: https://api.weather.gov/points/44.353700,-73.863600/forecast/hourly

与 CURL 相同

Headers返回

Array ( [0] => HTTP/1.1 403 Forbidden [1] => Server: AkamaiGHost [2] => Mime-Version: 1.0 [3] => Content-Type: text/html [4] => Content-Length: 334 [5] => Expires: Thu, 13 Apr 2017 14:15:56 GMT [6] => Date: Thu, 13 Apr 2017 14:15:56 GMT [7] => Connection: close )

您需要设置 AcceptVersionUser-Agent headers。