我想使用我需要的 restKit api 从 iOS 的 Web 服务获取信息(json)。我的 Web 服务具有基本身份验证
我尝试使用以下代码登录:
RKURL *baseURL = [RKURL URLWithBaseURLString:@"http://mysite.com"];
RKClient *client= [RKClient sharedClient];
client.username = @"user";
client.password = @"passw";
client.authenticationType = RKRequestAuthenticationTypeHTTPBasic;
RKRequest * therequest = [client requestWithResourcePath:@"/authentication"];
[therequest setMethod:RKRequestMethodPOST];
[therequest setDelegate:self];
[therequest send];
但我无法得到它。
请......你能给我一个关于restKit的基本身份验证的例子吗?
此致!