ウェブサイトにこのような質問が複数あることは知っていますが、どの解決策もうまくいきません。
私がやりたいのは、RestKitforiOSを使用したWebサービスへの簡単な投稿です。
これが私が使用しているコードです:
RKClient *client = [RKClient sharedClient];
client.authenticationType = RKRequestAuthenticationTypeHTTPBasic;
[client post:[ACCOUNT_BASE_URL stringByAppendingString:@"/Register"] params:
[NSDictionary dictionaryWithObjectsAndKeys:
_dateOfBirth.text, @"DOB",
_emailAddress.text, @"Email",
_firstName.text, @"FirstName",
_lastName.text, @"LastName",
_password.text, @"Password",
_userName.text, @"UserName",
nil] delegate:self];
エラーが発生し続けます:RKResponse.m:164 canAuthenticateAgainstProtectionSpace:with authenticationMethod = NSURLAuthenticationMethodServerTrust
また、シミュレータから送信されたパケットをスニッフィングし始めたとき、POSTがまったく送信されていないことに気付きました。
誰かが以前にこの問題に直面したことがありますか?私を正しい方向に向けてください。
ありがとう