OStack程序员社区-中国程序员成长平台

标题: ios - 单个 HTTP 请求中的双重请求 header [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-12 20:33
标题: ios - 单个 HTTP 请求中的双重请求 header

有问题的请求如下所示

POST /api/v2/users/push HTTP/1.1 
Host: glowing.com 
Content-Type: application/json 
Accept: */* 
Connection: keep-alive 
Cookie: _ga=GA1.2.840810247.1459550932 
User-Agent: Glow/201605261852 CFNetwork/758.4.3 Darwin/15.5.0 
Accept-Language: en-us 
Accept-Encoding: gzip, deflate 
Content-Length: 402 

POST /api/v2/users/push HTTP/1.1 
Host: glowing.com 
Content-Type: application/json 
Accept: */* 
Connection: keep-alive 
Cookie: _ga=GA1.2.840810247.1459550932 
User-Agent: Glow/201605261852 CFNetwork/758.4.3 Darwin/15.5.0 
Accept-Language: en-us 
Accept-Encoding: gzip, deflate 
Content-Length: 402 

{"app_version":"3.0.2","locale":"en_GB","log_list":...}

请求头在请求中出现了两次,这导致我们的服务器在解析请求时引发错误。关于这个问题的一些其他说明

到目前为止,我不知道如何调试此问题。欢迎任何建议。

更新:

我不确定问题是否出在我们的 iOS 代码中,但这里是我们用于向服务器发送日志的代码。这个网络请求偶尔会出现这种双 header 问题

NSMutableDictionary *params = [@{@"log_list": logList} mutableCopy];
params[@"app_version"] = [Utils appVersion];
params[@"device_id"] = [Utils UUID];
params[@"locale"] = [Utils localeString];
params[@"model"] = [Utils modelString];


NSData *requestData = [NSJSONSerialization dataWithJSONObject:params options:0 error:nil];
NSMutableURLRequest *request = [[NSMutableURLRequest alloc] initWithURL:[NSURL URLWithString:self.apiURL]];
[request setHTTPMethod"OST"];
[request setTimeoutIntervalOGGING_REQUEST_TIMEOUT];
[request setHTTPBody:requestData];
[request addValue"application/json" forHTTPHeaderField"Content-Type"];
[NSURLConnection sendSynchronousRequest:request returningResponse:nil error:error];



Best Answer-推荐答案


我从来没有遇到过 NSURLConnection 的 header 问题,并且我已经围绕 NSURLConnection 编写了自己的封装 API。您还可以通过打印标题字段来验证,如下所示。您还可以通过配置您的默认 NSURLSession 来交叉检查 - 并尝试使用 NSURLSession data api's .也许您还应该检查服务器端代码。如果您的代码确实存在问题,请发布您的发现。会对我们的开发者伙伴有所帮助。

   NSURL *url = [NSURL URLWithString"http://your URL here"];
NSURLRequest *request = [NSURLRequest requestWithURL: url];
NSHTTPURLResponse *response;
[NSURLConnection sendSynchronousRequest: request returningResponse: &response error: nil];
if ([response respondsToSelectorselector(allHeaderFields)]) {
NSDictionary *dictionary = [response allHeaderFields];
NSLog([dictionary description]);
}

关于ios - 单个 HTTP 请求中的双重请求 header ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37789698/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4