是否有适用于非常长的数据 URI 的 URL 缩短器?

发布于 2024-11-19 07:15:37 字数 1539 浏览 4 评论 0原文

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

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

发布评论

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

评论(2

丶视觉 2024-11-26 07:15:37

我认为 URL 缩短服务的主要动机之一是具有消息长度限制的社交网络服务(例如 Twitter)。我预计您不太可能找到适合您特定需求的服务。您在问题中引用的文章非常有趣。 (尤其是关于 TinyURL 的大限制。)

应用程序的一切都正常,没有问题,只是传递 100,000 个字符长的网址有点痛苦

我可能会依赖那句老话,“如果它没有坏……就不要修复它。”

I think one of the main motivations for url shortening services was social networking services (such as Twitter) with message length limits. I expect that you will not likely find such a services suiting your particular desires. The article you referenced in your question was quite interesting. (especially re: TinyURL's large limit.)

Everything about the app works and it's no problem, it's just slightly painful to pass around urls that are 100,000 chars long

I might fall back on that old saying, "If it ain't broke... don't fix it."

不气馁 2024-11-26 07:15:37

浏览器对URL长度都有限制,据我所知IE大约是2083个字符,其他浏览器如Chrome也类似。在此处查看 StackOverflow 答案:

http://9to.one/gV0XOQ

我建议您创建以下之一自己做那些REST服务器,步骤:
* 选择哈希算法
* 使用 Java 中的 Jersey 或您喜欢的任何其他语言创建 REST 服务
* 使用RIAK数据库保存您的key/long_link

Browsers all have limit on the URL length, from what I know IE around 2083 chars, and other like Chrome are similar. Check out StackOverflow answers here:

http://9to.one/gV0XOQ

I would like to suggest you create one of those REST server by yourself, steps:
* Pick a Hash algorithm
* Create a REST service by using Jersey in Java or any other language you like
* Use RIAK database to save your key/long_link

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