Posts

Post not yet marked as solved
1 Replies
302 Views
How can I send requests through a proxy with the Network library? With URLSession this could be done through the configuration like: configuration.connectionProxyDictionary = [ kCFNetworkProxiesHTTPEnable as String: 1, kCFNetworkProxiesHTTPProxy as String: ip, kCFNetworkProxiesHTTPPort as String: port, "HTTPSEnable": 1, "HTTPSProxy": ip, "HTTPSPort": port, ] Is it possible to do something similar with the Network library?
Posted Last updated
.