使用 NSMutableURLRequest 请求

Posted

技术标签:

【中文标题】使用 NSMutableURLRequest 请求【英文标题】:Request with NSMutableURLRequest 【发布时间】:2012-07-07 03:20:23 【问题描述】:

我尝试制作一个登录页面以使用户对网站进行身份验证。我试过类似的东西:

    NSURL *myURL = [NSURL URLWithString:@"https://www.freelancer.com/users/onlogin.php"];
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:myURL
                                                       cachePolicy:NSURLRequestReloadIgnoringLocalCacheData
                                            timeoutInterval:60];    
NSLog(@"ispost");
[request setHTTPMethod:@"POST"];
[request setValue:usernameField.text forKey:@"username"];
[request setValue:passwordField.text forKey:@"passwd"];


NSURLConnection *theConnection = [[NSURLConnection alloc] initWithRequest:request delegate:self];

if (!theConnection) 
    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Network Error" message:@"Could not login!" delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil];
    [alert show];
    [alert release];
    return;

我得到一个错误如下:

2012-07-07 10:09:37.354 Auth[6062:f803] ispost 2012-07-07 10:09:37.357 Auth[6062:f803] *** Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[<NSMutableURLRequest 0x68d69d0> setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key username.'

谁能告诉我我做错了什么?

感谢您的帮助

【问题讨论】:

【参考方案1】:

你为什么不使用like

[request setValue:usernameField.text forHTTPHeaderField:@"username"];
[request setValue:passwordField.text forHTTPHeaderField:@"passwd"];

希望对你有所帮助。

【讨论】:

【参考方案2】:

NSMutableURLRequest 没有用户名属性(因此出现错误)。您需要执行以下操作(尽管这取决于您的服务器期望的格式):

[request setHTTPMethod:@"POST"];
NSString* str = [NSString stringWithFormat:@"username=%@&passwd=%@", usernameField.text, passwordField.text];
[request setHTTPBody:[str dataUsingEncoding:NSUTF8StringEncoding]];

希望对您有所帮助。

【讨论】:

谢谢,它工作正常,但它不能通过didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge 工作我如何使用它来检查身份验证用户 是的,我已经实现了该方法,但似乎没有调用didReceiveAuthenticationChalleng 我通过didReceiveAuthenticationChalleng 得到了它,但即使我输入了错误的用户名或密码,它也不会转到else。你能给我建议吗? 为了追踪它,我必须查看代码。我建议关闭这个问题并开始一个带有链接的新问题。 这是我的问题的链接:link【参考方案3】:

提示在您的错误字符串中:

这个类不符合键用户名的键值编码。

我很确定您无法以您尝试的方式进行基本身份验证。快速搜索出现了this,我确实记得在尝试通过每个请求传递它时必须执行 base64(替代方法是实现连接委托方法,并正确处理身份验证请求。

【讨论】:

以上是关于使用 NSMutableURLRequest 请求的主要内容,如果未能解决你的问题,请参考以下文章

在 iOS 中使用“Body Requests”发送 NSMutableURLRequest 请求

POST 请求未考虑 NSMutableURLRequest 超时间隔

NSMutableURLRequest 处理soap请求中的特殊字符

NSMutableUrlRequest自定义封装网络请求

如何在注销期间取消所有 NSMutableURLRequest?

NSMutableURLRequest 发送部分帖子正文