如何在Swift 3中使用URLSession和Proxy

编程入门 行业动态 更新时间:2024-10-09 01:14:36
本文介绍了如何在Swift 3中使用URLSession和Proxy的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

对于API请求,我正在尝试使用代理设置URLSession。出于测试目的,我使用公共代理和响应IP的API。

For an API Request I'm trying to setup an URLSession using a Proxy. For test purposes I'm using a public Proxy and an API responding the IP.

func makeRequestViaUrlSessionProxy(_ url: String, completion: @escaping (_ result: String?) -> ()) { let request = URLRequest(url: URL(string: url)!) let config = URLSessionConfiguration.default config.requestCachePolicy = URLRequest.CachePolicy.reloadIgnoringLocalCacheData config.connectionProxyDictionary = [AnyHashable: Any]() config.connectionProxyDictionary?[kCFNetworkProxiesHTTPEnable as String] = 1 config.connectionProxyDictionary?[kCFNetworkProxiesHTTPProxy as String] = "142.54.173.19" config.connectionProxyDictionary?[kCFNetworkProxiesHTTPPort as String] = 8888 let session = URLSession.init(configuration: config, delegate: nil, delegateQueue: OperationQueue.current) let task = session.dataTask(with: request) { (data: Data?, response: URLResponse?, error: Error?) in if error != nil { NSLog("Client-side error in request to \(url): \(error)") completion(nil) return } if data == nil { NSLog("Data from request to \(url) is nil") completion(nil) return } let httpResponse = response as? HTTPURLResponse if httpResponse?.statusCode != 200 { NSLog("Server-side error in request to \(url): \(httpResponse)") completion(nil) return } let encodingName = response?.textEncodingName != nil ? response?.textEncodingName : "utf-8" let encoding = CFStringConvertEncodingToNSStringEncoding(CFStringConvertIANACharSetNameToEncoding(encodingName as CFString!)) let stringData = String(data: data!, encoding: String.Encoding(rawValue: UInt(encoding))) session.invalidateAndCancel() completion(stringData) } task.resume() }

被叫:

override func viewDidLoad() { super.viewDidLoad() makeRequestViaUrlSessionProxy("api.ipify?format=json") { string in print(string) } }

好像 config 被完全忽略,因为即使使用组合代理IP,响应的IP也始终是实际设备IP

It seems like the config is completely ignored because even with made up Proxy IP, the responded IP is always the actual devices IP

任何帮助都非常受欢迎。

Any help is highly appreciated.

编辑:根据用户hasan83的建议,HTTPS密钥似乎不是一个选项。

as suggested by User hasan83, taking "the HTTPS keys" seems not an option.

推荐答案

我认为工作(应该被弃用)的关键是:

I think the working (supposed to be deprecated) keys are:

kCFStreamPropertyHTTPSProxyHost kCFStreamPropertyHTTPSProxyPort

你能试试这段代码吗?

func makeRequestViaUrlSessionProxy(_ url: String, completion: @escaping (_ result: String?) -> ()) { let request = URLRequest(url: URL(string: url)!) let config = URLSessionConfiguration.default config.requestCachePolicy = URLRequest.CachePolicy.reloadIgnoringLocalCacheData config.connectionProxyDictionary = [AnyHashable: Any]() config.connectionProxyDictionary?[kCFNetworkProxiesHTTPEnable as String] = 1 config.connectionProxyDictionary?[kCFNetworkProxiesHTTPProxy as String] = "142.54.173.19" config.connectionProxyDictionary?[kCFNetworkProxiesHTTPPort as String] = 8888 config.connectionProxyDictionary?[kCFStreamPropertyHTTPSProxyHost as String] = "142.54.173.19" config.connectionProxyDictionary?[kCFStreamPropertyHTTPSProxyPort as String] = 8888 let session = URLSession.init(configuration: config, delegate: nil, delegateQueue: OperationQueue.current) let task = session.dataTask(with: request) { (data: Data?, response: URLResponse?, error: Error?) in if error != nil { NSLog("Client-side error in request to \(url): \(error)") completion(nil) return } if data == nil { NSLog("Data from request to \(url) is nil") completion(nil) return } let httpResponse = response as? HTTPURLResponse if httpResponse?.statusCode != 200 { NSLog("Server-side error in request to \(url): \(httpResponse)") completion(nil) return } let encodingName = response?.textEncodingName != nil ? response?.textEncodingName : "utf-8" let encoding = CFStringConvertEncodingToNSStringEncoding(CFStringConvertIANACharSetNameToEncoding(encodingName as CFString!)) let stringData = String(data: data!, encoding: String.Encoding(rawValue: UInt(encoding))) session.invalidateAndCancel() completion(stringData) } task.resume() }

另外请确保您的代理服务器配置为处理https请求。

Also please make sure your proxy server is configured to handle https requests.

注意:它可能会为这些键提供已弃用的警告,但键仍然有效(请参阅 forums.developer.apple/thread/19356#131446 )

Note: It might give deprecated warning for those keys but keys are still working (see forums.developer.apple/thread/19356#131446)

更多推荐

如何在Swift 3中使用URLSession和Proxy

本文发布于:2023-11-26 21:55:26,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1635347.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:如何在   Swift   Proxy   URLSession

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!