2

请任何人帮助进行以下网址的 cURL 调用

curl -u "demo:demo" -H "Accept: application/json" http://api.holdsport.dk/v1/teams

这对我继续我的项目真的很有帮助。demo:demo 是用户名和密码

谢谢。

4

2 回答 2

3

cURL 所基于的libcurl项目是基于 C 的,并且由于 C 是 Objective-C 的子集(这里有很多示例),因此可以完美运行。虽然如果您只针对 Cocoa/Cocoa Touch,那么 NSURLConnection 类(或更高级别的 ASIHTTPRequest 或 AFNetworking 第三方库)会更容易(开箱即用的异步处理)。

编辑:实际上,如果您真的想使用 cURL,可以使用Cocoa 绑定

于 2012-04-27T23:14:45.167 回答
0

这就是我看到的http请求的方式

//Create a new url request with our url path
myRequest_ = [[ASIHTTPRequest alloc]initWithURL:[NSURL URLWithString:URL_PATH]];
myRequest_.delegate = self;

//send out the request as asynchronous
[myRequest_ startAsynchronous];

http://www.roostersoftstudios.com/2011/10/16/iphone-dev-how-to-communicate-with-server-using-http-json-and-phpor-any-server-side-language/

于 2012-04-27T22:37:07.430 回答