使用 Bit.ly API 仅使用 Javascript 来缩小 URL
这些天我在玩一点 Javascript...我使用 bit.ly 缩小了一些 URL 来发布它们,然后我开始考虑一个自动化过程,可以使用他们的 API 来缩小我想要的 URL,然后我查看了查看他们的文档,我看到他们只支持 PHP(带有一些 Javascript),但无论如何我可以只使用 Javascript 来实现这一点?
I'm playing a bit with Javascript these days... I was shrinking some URLs using bit.ly to tweet them, then I started to think on a automated process that could use their API to shrink the URLs I wanted, then I looked up on their documentation, and I saw that they only support PHP(with some Javascript), but there is anyway that I could make this using only Javascript?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
以下是如何使用 Bitly API 和 jQuery 获取缩短的 URL 的示例,无需服务器端代码。
以下代码可用于获取短 URL:
Here is an example how to get a shortened URL with Bitly API and jQuery, no server side code required.
The following code could be used to get a short URL:
根据 JavaScript 的执行位置,您始终可以使用 bit.ly REST API:
通过 XmlHttpRequest http://code.google.com/p/bitly-api/wiki/ApiDocumentation
,例如:
Depending on where the JavaScript is executing, you could always use the bit.ly REST API:
http://code.google.com/p/bitly-api/wiki/ApiDocumentation
via XmlHttpRequest, for example:
来自 bitly 上的开发人员最佳实践页面:
From the developer best practises page on bitly: