gpt4 book ai didi

ios - 单个 HTTP 请求中的双请求 header

转载 作者:塔克拉玛干 更新时间:2023-11-02 10:30:50 24 4
gpt4 key购买 nike

有问题的请求看起来像这样

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":...}

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

  • 我们的应用程序同时具有 iOS 和 Android 客户端,它们将 HTTP 请求发送到同一服务器。而我们只在iOS客户端遇到过这个问题。所以这更有可能是客户端问题。

  • 我们的服务器每天收到数百万个请求,而问题只发生大约 20-30 次。

到目前为止,我还不知道如何调试这个问题。欢迎提出任何建议。

更新:

我不确定问题是否出在我们的 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:@"POST"];
[request setTimeoutInterval:LOGGING_REQUEST_TIMEOUT];
[request setHTTPBody:requestData];
[request addValue:@"application/json" forHTTPHeaderField:@"Content-Type"];
[NSURLConnection sendSynchronousRequest:request returningResponse:nil error:error];

最佳答案

我从来没有遇到过 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 respondsToSelector:@selector(allHeaderFields)]) {
NSDictionary *dictionary = [response allHeaderFields];
NSLog([dictionary description]);
}

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

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