gpt4 book ai didi

ios - 如何在使用 RestKit 时发帖

转载 作者:行者123 更新时间:2023-11-28 17:33:18 26 4
gpt4 key购买 nike

我知道网站上有很多这样的问题,但没有一个解决方案适合我。

我只想使用 RestKit for iOS 向网络服务发送一个简单的帖子。

这是我使用的代码:

     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。

有人遇到过这个问题吗?请指出正确的方向。

谢谢

最佳答案

确保您正在设置客户端的用户名和密码属性:

client.username = @"your_username"
client.password = @"your_password"

关于ios - 如何在使用 RestKit 时发帖,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10599696/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com