我想连接到服务器并在 iOS 中取回 JSON 数据。它需要用户名和密码才能访问。如果我用 cURL 抓取它,它看起来像这样:
curl -i --user "John@smith.net:password" http://example.com:9999/api/v1.0/users/
如何在 iOS 中连接到它?我怎样才能打印数据(NSLog)?
我想连接到服务器并在 iOS 中取回 JSON 数据。它需要用户名和密码才能访问。如果我用 cURL 抓取它,它看起来像这样:
curl -i --user "John@smith.net:password" http://example.com:9999/api/v1.0/users/
如何在 iOS 中连接到它?我怎样才能打印数据(NSLog)?
看看这个问题:NSURLConnection and Basic HTTP Authentication
在您可以使用 NSLog 打印 JSON 数据或使用SBJson之类的库对其进行处理之后