通过代理使用 restsharp 发送 post 请求
Send post request using restsharp thru proxy
我正在尝试使用 restsharp 通过代理发送 post 请求,但我不知道该怎么做。我不想通过需要身份验证的代理(ip 身份验证或 user/pass)发送它,只是一个简单的 ip:port 代理。
您需要在客户端选项中指定代理:
var options = new RestClientOptions(url) {
Proxy = new WebProxy(proxyAddress)
};
var client = new RestClient(options);
我正在尝试使用 restsharp 通过代理发送 post 请求,但我不知道该怎么做。我不想通过需要身份验证的代理(ip 身份验证或 user/pass)发送它,只是一个简单的 ip:port 代理。
您需要在客户端选项中指定代理:
var options = new RestClientOptions(url) {
Proxy = new WebProxy(proxyAddress)
};
var client = new RestClient(options);