如何使用 PHP 从 URL 获取 JSON 数据?我遇到身份验证失败

How can I get JSON data from a URL using PHP? I'm getting authentication failure

这是美国国家气象局 JSON 天气数据的 public URL。

https://forecast.weather.gov/MapClick.php?lat=39.71&lon=-104.76&FcstType=json

如果我输入这个URL是浏览器的地址栏(或者点击上面的link),我得到的正是我想要的JSON数据。但是我对 PHP 的所有尝试(在我的 WordPress 网站上)都会导致身份验证错误。 我尝试了沿这条线的 Whosebug 建议的变体:

$json = file_get_contents('url_here');
$obj = json_decode($json);
echo $obj->access_token;

我已经按照这条线尝试了 Whosebug 建议的几种变体:

$ch = curl_init();
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_URL, 'url_here');
$result = curl_exec($ch);
curl_close($ch);

$obj = json_decode($result);
echo $obj->access_token;

在所有情况下,我都会收到身份验证错误:

Access Denied
You don't have permission to access "http://forecast.weather.gov/MapClick.php?" on this server.

Reference #18.d56775c7.1554244115.21225898

错误消息在“?”处停止的事实在 URL 让我想知道我是否需要通过一种方法传递 PHP 参数,而不是简单地将它们附加到 URL.

我假设我不需要身份验证信息(用户名、密码),因为 NWS 数据旨在 public。

建议将不胜感激。

您尝试访问的网站似乎需要用户代理。

不用担心,我们可以使用 cURL 轻松做到这一点:

<?php
    function curler ($url)
    {
        $ch = curl_init();
        curl_setopt($ch, CURLOPT_URL, $url);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
        curl_setopt($ch, CURLOPT_USERAGENT , "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1)");
        $output = curl_exec($ch);
        curl_close($ch);
        return json_decode($output);
    }

    var_dump (
        curler("https://forecast.weather.gov/MapClick.php?lat=39.71&lon=-104.76&FcstType=json")
    );

这将 return 您期望在对象中的数据。