如何使用带有 UTF-8 编码的 HTTParty?
我有一个类似 http://example.com/tag/София/new.json
的 URL,我想使用 HTTParty 发出 GET 请求。当我这样做时:
HTTPArty.get "http://example.com/tag/София/new.json
我得到:
URI::InvalidURIError at /
bad URI(is not URI?): link here
有什么想法如何处理这个问题吗?
I have a URL like http://example.com/tag/София/new.json
and I want to make a GET request with HTTParty. When I do:
HTTPArty.get "http://example.com/tag/София/new.json
I get:
URI::InvalidURIError at /
bad URI(is not URI?): link here
Any ideas how to handle this ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
标准表示“将 URL 编码为 UTF-8,然后表示多字节序列作为转义八位组的百分比。”就你而言,
The standard says "encode the URL as UTF-8, then represent multi-byte sequences as percent-escaped octets." In your case,