在 iPhone 应用程序中实现 bit.ly 网址缩短

发布于 2024-09-25 07:24:14 字数 174 浏览 4 评论 0原文


我想在我的应用程序中实现 bit.ly URL 缩短服务,并从 biy.ly 的 API 文档中我读到它使用 JSON 来缩短链接...
不幸的是,我从未使用过 JSON,而且我不知道从哪里开始。
谁能解释一下如何在我的应用程序中实现 bit.ly URL 缩短服务?

谢谢,
马泰奥

I'd like to implement bit.ly URL shortening service in my application and from biy.ly's API docs I read It uses JSON to short a link...
Unfortunately, I never used JSON and I don't know where to start.
Can anyone explain me how to implement bit.ly URL shortening service in my application?

Thanks,
Matteo

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

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

发布评论

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

评论(2

柠檬心 2024-10-02 07:24:14

在 github 上查看我的 bitly 项目... http://github.com/st3fan/iphone-bitly

Check out my bitly project at github ... http://github.com/st3fan/iphone-bitly

葬花如无物 2024-10-02 07:24:14

JSON 只是一种 (Javascript) 方式,用于在 http POST 请求中以名称值对形式对数据进行编码。所以你只需要为你的 iPhone 应用程序使用一个好的编码器/解码器 API 即可。另请参阅本教程:

教程:Json over http on the Iphone

想了解更多关于JSON如何工作的内容,这本书有一个精彩的章节:

JavaScript:好的部分

JSON is just a (Javascript) way to encode you're data in name value pairs in an http POST request. So you just need to use a good encoder/decoder API for you're iphone application. See also this tutorial:

tutorial: Json over http on the Iphone

Want to know more about how JSON works, this book has an excelent chapter on it:

JavaScript: The Good Parts

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