Swift URLSession.shared.dataTask GET 请求-1001 returns 超时
Swift URLSession.shared.dataTask GET Request -1001 returns timeout
向我们的 NGINX 服务器发送 POST 请求与 URLRequest
和 URLSession.shared.dataTask
配合良好。
我可以登录到我的应用程序,但是当我尝试 GET 请求时,我的服务器没有记录表明请求已到达他。最后我得到超时错误。重要的是,我正在使用 https。我还尝试将 http 用于 GET 请求。在我的 NGINX 服务器上,我仅将 TLS 设置为 1.2(我不是系统专家,我是在 nginx cfg 文件中设置的。
Error Domain=NSURLErrorDomain Code=-1001 "Zeitüberschreitung bei der Anforderung." UserInfo={NSUnderlyingError=0x60400005abe0 {Error Domain=kCFErrorDomainCFNetwork Code=-1001 "(null)" UserInfo={_kCFStreamErrorCodeKey=-2102, _kCFStreamErrorDomainKey=4}}, NSErrorFailingURLStringKey=https://myurl, NSErrorFailingURLKey=https://myurl, _kCFStreamErrorDomainKey=4, _kCFStreamErrorCodeKey=-2102, NSLocalizedDescription=Zeitüberschreitung bei der Anforderung.}
我确定我的 URLRequest
和 URLSession
代码是正确的,因为针对本地主机和我们的开发环境我没有任何这些问题。
这就是我创建 URLRequest
的代码
private func buildUrlRequest(jsonObject:[String: Any], connectionType:ConnectionTypes, url:String) -> NSMutableURLRequest? {
let jsonDataSerialized:Data
do {
jsonDataSerialized = try JSONSerialization.data(withJSONObject: jsonObject)
} catch {
return nil
}
var request:NSMutableURLRequest
if nextData {
request = URLRequest(url: URL(string: self.nextRequestPage)!) as! NSMutableURLRequest
} else {
let tString = self.mBaseUrl + url
if let encoded = tString.addingPercentEncoding(withAllowedCharacters: .urlFragmentAllowed),
var finalurl = URL(string: encoded)
{
if connectionType == .GET {
var tString:String
tString=finalurl.absoluteString
tString = tString.replacingOccurrences(of: "https", with: "http")
finalurl = URL(string:tString)!
}
request = URLRequest(url: finalurl) as! NSMutableURLRequest
} else {
return nil
}
}
request.httpMethod = connectionType.rawValue // i am using enum here
request.setValue("application/json", forHTTPHeaderField: "Content-Type")
request.setValue("no-cache)", forHTTPHeaderField: "Cache-Control")
request.httpBody = jsonDataSerialized
if mUser != nil && mUser.getSessionId() != nil {
request.addValue("Token " + mUser.getSessionId()!, forHTTPHeaderField: "Authorization")
}
request.cachePolicy = .reloadIgnoringLocalAndRemoteCacheData
request.timeoutInterval = 30.0
return request
}
这就是我创建任务的方式...在我使用的方法主体之后 task.resume()
let task = URLSession.shared.dataTask(with: request as URLRequest) { data, response, error in .... (and so on)
我花了几个小时来解决这个问题...但我不知道。
我不确定问题是服务器配置还是 Swift 代码...
主要问题是 jsonObject:[String: Any]
!
我把它改成了 jsonObject:[String: Any]?
在我的代码中,我为每个请求创建了正文,无论它是 POST GET PUT 还是什么。没有 GET 请求中的 http-body,我就没有问题了,没有超时!我按预期正确接收了数据。
我还发现,仅在我的情况下,没有必要设置 nginx 或让加密 sll_protocols 到 TLS 1.2。
我希望如果其他人遇到这个问题,他们会发现这个 post :)
向我们的 NGINX 服务器发送 POST 请求与 URLRequest
和 URLSession.shared.dataTask
配合良好。
我可以登录到我的应用程序,但是当我尝试 GET 请求时,我的服务器没有记录表明请求已到达他。最后我得到超时错误。重要的是,我正在使用 https。我还尝试将 http 用于 GET 请求。在我的 NGINX 服务器上,我仅将 TLS 设置为 1.2(我不是系统专家,我是在 nginx cfg 文件中设置的。
Error Domain=NSURLErrorDomain Code=-1001 "Zeitüberschreitung bei der Anforderung." UserInfo={NSUnderlyingError=0x60400005abe0 {Error Domain=kCFErrorDomainCFNetwork Code=-1001 "(null)" UserInfo={_kCFStreamErrorCodeKey=-2102, _kCFStreamErrorDomainKey=4}}, NSErrorFailingURLStringKey=https://myurl, NSErrorFailingURLKey=https://myurl, _kCFStreamErrorDomainKey=4, _kCFStreamErrorCodeKey=-2102, NSLocalizedDescription=Zeitüberschreitung bei der Anforderung.}
我确定我的 URLRequest
和 URLSession
代码是正确的,因为针对本地主机和我们的开发环境我没有任何这些问题。
这就是我创建 URLRequest
private func buildUrlRequest(jsonObject:[String: Any], connectionType:ConnectionTypes, url:String) -> NSMutableURLRequest? {
let jsonDataSerialized:Data
do {
jsonDataSerialized = try JSONSerialization.data(withJSONObject: jsonObject)
} catch {
return nil
}
var request:NSMutableURLRequest
if nextData {
request = URLRequest(url: URL(string: self.nextRequestPage)!) as! NSMutableURLRequest
} else {
let tString = self.mBaseUrl + url
if let encoded = tString.addingPercentEncoding(withAllowedCharacters: .urlFragmentAllowed),
var finalurl = URL(string: encoded)
{
if connectionType == .GET {
var tString:String
tString=finalurl.absoluteString
tString = tString.replacingOccurrences(of: "https", with: "http")
finalurl = URL(string:tString)!
}
request = URLRequest(url: finalurl) as! NSMutableURLRequest
} else {
return nil
}
}
request.httpMethod = connectionType.rawValue // i am using enum here
request.setValue("application/json", forHTTPHeaderField: "Content-Type")
request.setValue("no-cache)", forHTTPHeaderField: "Cache-Control")
request.httpBody = jsonDataSerialized
if mUser != nil && mUser.getSessionId() != nil {
request.addValue("Token " + mUser.getSessionId()!, forHTTPHeaderField: "Authorization")
}
request.cachePolicy = .reloadIgnoringLocalAndRemoteCacheData
request.timeoutInterval = 30.0
return request
}
这就是我创建任务的方式...在我使用的方法主体之后 task.resume()
let task = URLSession.shared.dataTask(with: request as URLRequest) { data, response, error in .... (and so on)
我花了几个小时来解决这个问题...但我不知道。 我不确定问题是服务器配置还是 Swift 代码...
主要问题是 jsonObject:[String: Any]
!
我把它改成了 jsonObject:[String: Any]?
在我的代码中,我为每个请求创建了正文,无论它是 POST GET PUT 还是什么。没有 GET 请求中的 http-body,我就没有问题了,没有超时!我按预期正确接收了数据。
我还发现,仅在我的情况下,没有必要设置 nginx 或让加密 sll_protocols 到 TLS 1.2。
我希望如果其他人遇到这个问题,他们会发现这个 post :)