2012-05-15 41 views
1

我知道在網站上有這樣的問題,但沒有一個適合我。如何在使用RestKit時發佈帖子

我想要做的只是使用RestKit for iOS的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]; 

:當被問及如果canAuthenticateAgainstProtectionSpace 164: RKResponse.m與使用authenticationMethod = NSURLAuthenticationMethodServerTrust

此外,當我開始嗅探從模擬器發送的數據包我意識到POST根本不會被髮送。

有人遇到過這個問題嗎?請指向正確的方向。

感謝

+0

如果沒有發過帖子,是什麼? GET還是沒有? –

回答

0

一定要設置客戶端的用戶名和密碼屬性:

client.username = @"your_username" 
client.password = @"your_password" 
相關問題