通过 iPhone 的 DropBox SDK 在 Objective C 中创建 JSON 请求 URL
我对尝试弄清楚 JSON 和 DropBox API 如何与 DB 为 iPhone 发布的 iphone SDK 一起工作还很陌生。我了解这两种技术一般是如何工作的,并且您必须在请求中构建一个字典并获取另一个字典,但是我找不到一个可靠的示例来说明如何在 Objective C 中在线足够具体地执行任何操作。
我只需要一个例如,如何通过创建 JSON 请求从投递箱服务器获取信息来检索用户的个人资料信息。
我已经能够使用消费者密钥和消费者秘密登录用户并链接设备,但接下来我有点不知所措。
非常感谢您提供任何指导或示例。
I'm rather new to trying to figure out how JSON and the DropBox API function with the iphone SDK that DB has release for the iPhone. I understand how both technologies work in general and that you have to build a dictionary into a request and get another dictionary back, but I can't find a solid example of how to do anything specifically enough online in Objective C.
I just need one example of how to retrieve for instance the user's profile information by creating a JSON request to fetch info from the drop-box server.
I've been able to log the user in and linking the device using the consumer key and consumer secret but what's next I'm a little at a loss.
MANY thanks for any guidance or examples.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
发送数据
POST 方法示例:
GET 方法示例(URL 查询):
检索 JSON 值并将其转换为字典
您将需要 JSON 框架:http://code.google.com/p/json-framework/
还有 ASIHTTPRequest:http://allseeing-i.com/ASIHTTPRequest/
尚未使用 dropbox 进行测试,但应该是这样。
To send your data
Example for POST methods:
Example for GET methods (URL queries):
To retrieve JSON values and convert them into Dictionary
You will need JSON Framework: http://code.google.com/p/json-framework/
And also ASIHTTPRequest: http://allseeing-i.com/ASIHTTPRequest/
Haven't tested it with dropbox, but should be this way.