Proxies and twitter?

Saulyx

Junior Member
Joined
Jan 10, 2010
Messages
107
Reaction score
5
Hey everyone, anyone could suggest proxy provider to me whos proxies work with twitter? it's a php/curl based app

cheers
 
I can offer you some.

Try this as demo


184.82.3.100:3128
184.82.3.101:3128

user: proxyadmin
pass: parola
 
first one timed out? trying second one

Second one works fine on browser, hmmm, let me see if my php is being a dick
 
Last edited:
I can offer you some.

Try this as demo


184.82.3.100:3128
184.82.3.101:3128

user: proxyadmin
pass: parola


I can strongly recomend this guy and his proxys, private proxys for tweet attacks it the ultimate way of getting good result on twitter, this proxys this guy gives is super great :)
 
first one timed out? trying second one

Second one works fine on browser, hmmm, let me see if my php is being a dick

They both work for me. Maybe you have a problem with the port 3218. Some kind of firewall?
 
im a mac user myself, works fine with firefox, just server and curl doesnt seem to work, still troubleshooting, could you PM me your IM details? Cheers
 
im a mac user myself, works fine with firefox, just server and curl doesnt seem to work, still troubleshooting, could you PM me your IM details? Cheers

Sure, PM with you php code that doesn't work
 
sent you a PM, let me know
 
This is working for my server


print_r(getPage('184.82.3.100','http://rue8.com'));
function getPage($proxy, $url) {
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);

curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_PROXY, $proxy);
curl_setopt($ch, CURLOPT_HTTPPROXYTUNNEL, 1);
curl_setopt($ch, CURLOPT_PROXYPORT, 3128);
curl_setopt($ch, CURLOPT_PROXYUSERPWD, 'proxyadmin:parola');
$result['EXE'] = curl_exec($ch);
$result['INF'] = curl_getinfo($ch);
$result['ERR'] = curl_error($ch);

curl_close($ch);

return $result;
}
 
Back
Top