Bit.ly 中的字符问题
当我尝试用“#,&”缩短链接时角色我得到了例外。有没有办法正确处理这些角色?
这是一个有效的示例代码:
String shortUrl = bitly.getShortUrl("http://z"); //Works
如果我添加例如“&”或 '%25' 到字符串中,它将引发异常:
String shortUrl = bitly.getShortUrl("http://z%26"); // Exception
String shortUrl = bitly.getShortUrl("http://z&"); // Exception
来自 此 Java 类。
谢谢
When I try to shorten a link with "#,&" character I get an exception. Is there a way to handle these character properly?
This is a sample code that works:
String shortUrl = bitly.getShortUrl("http://z"); //Works
If I add for example '&' or '%25' to the string it will throw an exception:
String shortUrl = bitly.getShortUrl("http://z%26"); // Exception
String shortUrl = bitly.getShortUrl("http://z&"); // Exception
The getShortUrl
function from this Java class.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该库(您链接到的 Java 类)不会转义 URL...这非常糟糕。
摘录:
请注意
urlToShorten
不会以任何方式、形状或形式进行转义。容易受到注入式攻击,而且通常不起作用。不管怎样,你需要转义
urlToShorten
。That library (the Java class you link to) doesn't escape the URL... that's pretty awful.
Excerpt:
Notice how
urlToShorten
isn't escaped in any way, shape or form. Prone to injection-style attacks, and just generally doesn't work.Anyway, you'll need to escape
urlToShorten
.