ios - 单个 HTTP 请求中的双重请求 header
<p><p>有问题的请求如下所示</p>
<pre><code>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":...}
</code></pre>
<p>请求头在请求中出现了两次,这导致我们的服务器在解析请求时引发错误。关于这个问题的一些其他说明</p>
<ul>
<li><p>我们的应用同时拥有 iOS 和 Android 客户端,它们将 HTTP 请求发送到同一个服务器。而且我们只在iOS客户端遇到这个问题。所以这更有可能是客户问题。</p></li>
<li><p>我们的服务器每天收到数百万个请求,而问题只发生大约 20-30 次。</p></li>
</ul>
<p>到目前为止,我不知道如何调试此问题。欢迎任何建议。 </p>
<p>更新:</p>
<p>我不确定问题是否出在我们的 iOS 代码中,但这里是我们用于向服务器发送日志的代码。这个网络请求偶尔会出现这种双 header 问题</p>
<pre><code>NSMutableDictionary *params = [@{@"log_list": logList} mutableCopy];
params[@"app_version"] = ;
params[@"device_id"] = ;
params[@"locale"] = ;
params[@"model"] = ;
NSData *requestData = ;
NSMutableURLRequest *request = [ initWithURL:];
;
;
;
;
;
</code></pre></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>我从来没有遇到过 NSURLConnection 的 header 问题,并且我已经围绕 NSURLConnection 编写了自己的封装 API。您还可以通过打印标题字段来验证,如下所示。您还可以通过配置您的默认 NSURLSession 来交叉检查 - 并尝试使用 <a href="https://developer.apple.com/library/ios/documentation/Foundation/Reference/NSURLSession_class/" rel="noreferrer noopener nofollow">NSURLSession data api's</a> .也许您还应该检查服务器端代码。如果您的代码确实存在问题,请发布您的发现。会对我们的开发者伙伴有所帮助。</p>
<pre><code> NSURL *url = ;
NSURLRequest *request = ;
NSHTTPURLResponse *response;
;
if () {
NSDictionary *dictionary = ;
NSLog();
}
</code></pre></p>
<p style="font-size: 20px;">关于ios - 单个 HTTP 请求中的双重请求 header ,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/37789698/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/37789698/
</a>
</p>
页:
[1]