Merhaba arkadaşlar, bir anket sistemine post atması için curl ile bot yazıyorum.
Site her ip adresinin bir defa post göndermesine izin veriyor. Bunun içinde proxy ip ile göndermeye çalışıyorum.
Proxy ip girdiğim anda sayfa boş olarak dönüyor ve verileri post etmiyor.
Nasıl çözebilirim ?

$ch = curl_init();

curl_setopt($ch, CURLOPT_URL,"https://xxx.com/wp-admin/admin-ajax.php");
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS,
"action=polls&view=process&poll_id=1&poll_1=1&poll_1_nonce=8230f876b1");

curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_HTTPPROXYTUNNEL , 1);
curl_setopt($ch,CURLOPT_PROXY,'52.179.231.206');
curl_setopt($ch,CURLOPT_PROXYPORT,'80');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

$server_output = curl_exec($ch);

curl_close ($ch);


echo $server_output;