Zend HTTP 客户端 URI 无效?

发布于 2024-10-22 00:52:51 字数 305 浏览 1 评论 0原文

我在 URL 上使用 Zend HTTP 时遇到问题:

$client = new Zend_Http_Client('http://xxfire_killumiex.api.channel.livestream.com/2.0/info.json');
$feed = $client->request()->getBody();

出于某种原因,这给了我一个错误...

Invalid URI supplied

这个特定的 url 有什么问题吗?

I'm having trouble using Zend HTTP on a URL:

$client = new Zend_Http_Client('http://xxfire_killumiex.api.channel.livestream.com/2.0/info.json');
$feed = $client->request()->getBody();

For some reason, this gives me an error...

Invalid URI supplied

Whats wrong this this specific url?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

爱冒险 2024-10-29 00:52:51

这个特定的网址有什么问题吗?

下划线。

来自 RFC 1912

主机名标签中允许的字符仅为 ASCII
字母、数字和“-”字符。

编辑

经过更多阅读后,Zend 在这种情况下似乎可能是错误的。

请参阅(域名)子域可以有其中有下划线“_”?

根据ZF-9671,尽管我已经重新打开了该问题,但您可能不走运。

同时我的建议是;像这样创建您自己的 HTTP 客户端类

class My_Http_Client extends Zend_Http_Client
{
    public function validateHost($host = null)
    {
        if ($host === null) {
            $host = $this->_host;
        }

        // If the host is empty, then it is considered invalid
        if (strlen($host) === 0) {
            return false;
        }

        return true;
    }
}

Whats wrong this this specific url?

The underscore.

From RFC 1912

Allowable characters in a label for a host name are only ASCII
letters, digits, and the `-' character.

Edit

After doing some more reading, it seems that Zend may be wrong in this case.

See Can (domain name) subdomains have an underscore "_" in it?

According to ZF-9671, you might be out of luck, though I've re-opened the issue.

My suggestion in the meantime; Create your own HTTP client class like this

class My_Http_Client extends Zend_Http_Client
{
    public function validateHost($host = null)
    {
        if ($host === null) {
            $host = $this->_host;
        }

        // If the host is empty, then it is considered invalid
        if (strlen($host) === 0) {
            return false;
        }

        return true;
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文