请任何人帮助进行以下网址的 cURL 调用
curl -u "demo:demo" -H "Accept: application/json" http://api.holdsport.dk/v1/teams
这对我继续我的项目真的很有帮助。demo:demo 是用户名和密码
谢谢。
请任何人帮助进行以下网址的 cURL 调用
curl -u "demo:demo" -H "Accept: application/json" http://api.holdsport.dk/v1/teams
这对我继续我的项目真的很有帮助。demo:demo 是用户名和密码
谢谢。
cURL 所基于的libcurl项目是基于 C 的,并且由于 C 是 Objective-C 的子集(这里有很多示例),因此可以完美运行。虽然如果您只针对 Cocoa/Cocoa Touch,那么 NSURLConnection 类(或更高级别的 ASIHTTPRequest 或 AFNetworking 第三方库)会更容易(开箱即用的异步处理)。
编辑:实际上,如果您真的想使用 cURL,可以使用Cocoa 绑定。
这就是我看到的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];