我正在尝试在我的应用中将 CO-OP API 用于某些目的 (http://coopapp.com/api)
我知道如何使用 curl 执行请求:
curl http://coopapp.com/groups/20/statuses -H 'Accept: application/xml' \ -H 'Content-Type: application/xml' -u email:password
但我不知道如何在 iOS 中做到这一点,希望有人可以插入我朝着正确的方向前进。
Best Answer-推荐答案 strong>
您可以使用 NSURLConnection 类来做到这一点。但我建议使用 MKNetworkKit这是一个方便的包装。它实际上甚至在其操作描述中显示了等效的 curl 命令。
关于ios - iOS 中的 CURL 请求,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/10476568/
|