Zend HTTP 客户端 URI 无效?
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
下划线。
来自 RFC 1912
编辑
经过更多阅读后,Zend 在这种情况下似乎可能是错误的。
请参阅(域名)子域可以有其中有下划线“_”?
根据ZF-9671,尽管我已经重新打开了该问题,但您可能不走运。
同时我的建议是;像这样创建您自己的 HTTP 客户端类
The underscore.
From RFC 1912
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