处理完一个关键字后,我不知道如何更改代理和关键字。同样也不确定将其放入多个关键字或代理列表的最佳方法。
我要处理关键字列表,使用一个代理处理一个关键字。如果代理服务器列表的数量少于关键字列表,则再次循环代理服务器列表。
有没有一种方法可以不使用列表框? (因为我已经尝试过了。)
using xNet;
using (var request = new HttpRequest())
{
string proxy = "127.0.0.1:8888";
request["Accept"] = "*/*";
request.Proxy = Socks5ProxyClient.Parse(proxy);
var attempt = request.Post("https://fortnite-public-api.theapinetwork.com/prod09/users/id?username=" + TextBox1.Text).ToString();
}