PHP Curl Proxy ile İnstagram
5
●883
- 29-08-2019, 13:41:35Selam hocalarım daha önce hiç curl kullanmadığım için bilgim yok internette 3 gündür araştırmama rağmen sonuç alamadım yanlış yaptığımı düşünüyorum elimde bulunan ipler sağlam bana sadece gerekli olan curl proxy kullanarak açılan sayfa https://instagram.com olacak vakti olan bunun için kısa bir kod yazabilir mi lütfen
- 29-08-2019, 13:43:05Hocam sorun kodunuzda değil instagram direkt çekmeyi engelledi sanırım bu yüzden çekemiyorsunuz, ama pmden kodu atarsanız bakabilirim
- 29-08-2019, 13:47:57Evet doğru ama proxy ile girenler var hatta SMM ciler sıkıntısız erişebiliyor muhtemelen proxy ileebubekirtrkr adlı üyeden alıntı: mesajı görüntüle
- 04-09-2019, 16:25:30ben de alabilir miyim hocam?batuhanmn adlı üyeden alıntı: mesajı görüntüle
- 04-09-2019, 16:32:23$url = 'url';hktnyvs adlı üyeden alıntı: mesajı görüntüle
$proxyauth = 'user
ass';
$proxy = '88.45.44.55';
$proxyPort = '8080';
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
//proxy suport
curl_setopt($ch, CURLOPT_PROXY, $proxy);
curl_setopt($ch, CURLOPT_PROXYPORT, $proxyPort);
curl_setopt($ch, CURLOPT_PROXYUSERPWD, $proxyauth);
curl_setopt($ch, CURLOPT_PROXYTYPE, 'HTTP');
curl_setopt($ch, CURLOPT_HTTPPROXYTUNNEL, 1);
//https
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_USERAGENT, "MozillaXYZ/1.0");
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_TIMEOUT, 100);
$output = curl_exec($ch);
curl_close($ch);
ass';