I have a doubt, how to make a request with proxy type.
curl_setopt($ch, CURLOPT_PROXY, “http://site.com:8080”);
curl_setopt($ch, CURLOPT_PROXYUSERPWD, “user:pass”);
how to make this connection in openbulet at every request?
I have a doubt, how to make a request with proxy type.
curl_setopt($ch, CURLOPT_PROXY, “http://site.com:8080”);
curl_setopt($ch, CURLOPT_PROXYUSERPWD, “user:pass”);
how to make this connection in openbulet at every request?
I couldn’t understand, cut the post you added
Not sure I understand what you mean with this
give me an example of how to do it?
I sent you the post with the explanation, click on LoliCode in the menu, then at the top of the editor add a few blank lines and paste this
data.Proxy = new Proxy("site.com", 8080, ProxyType.Http, "user", "pass");
data.UseProxy = true;
but in this type of proxy request we don’t know the proxy type if it is SOCKS5 SOCKS4 HTTP
it doesn’t work with this way
OB2 does not support unknown proxy type it cannot automatically detect it. If you want to use this you have to know the type in advance.
how to use proxy in post data ?
example : Our proxy is 178.91.89.99:6785 (IP:PORT)
In post data : (from=<IP>
&user=<input.USER>
&pass=<>
)
like this
You can use <data.Proxy?.Host>
instead of <IP>
. If you also need the port then
<data.Proxy?.Host>:<data.Proxy?.Port>