在 iPhone 应用程序中实现 bit.ly 网址缩短
我想在我的应用程序中实现 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 github 上查看我的 bitly 项目... http://github.com/st3fan/iphone-bitly
Check out my bitly project at github ... http://github.com/st3fan/iphone-bitly
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