```
c
ruby
require'typhoeus'
proxy_host="jshk.com.cn"
proxy_port=7413
url="https://news.sohu.com/"
Typhoeus::Config.ssl_verify_mode=Typhoeus::Config::VERIFY_NONE
#Use the proxy to crawl the image
Typhoeus.get(url,proxy:"http://#{proxy_host}:#{proxy_port}")
```
这个程序使用了Typhoeus库来爬取https://news.sohu.com/的图片。我们首先引入了Typhoeus库,然后设置了代理服务器的主机名和端口号。接着,我们指定了要爬取的URL。
最后,我们使用Typhoeus.get方法来发起请求,并设置了代理服务器的URL。
由于HTTPS请求需要进行SSL验证,我们使用Typhoeus::Config.ssl_verify_mode=Typhoeus::Config::VERIFY_NONE来禁用SSL验证。