我想使用restKit api 我需要從iOS的Web服務獲取信息(json)。我的Web服務有基本身份驗證基本身份驗證 - reskit -iOS
我試圖登錄用下面的代碼:
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基本認證的例子。
最好的問候!
刪除'therequest.additionalHTTPHeaders'線,它應該工作的罰款。 –
是的,我刪除了線......但我怎麼知道身份驗證是否正常工作?當登錄成功返回聯合國請求的關鍵...我怎麼能得到這個關鍵...我是iOS中最新的:( –
只需看看委託方法:http://restkit.org/api/master/協議/ RKRequestDelegate.html –