Salve,
non riesco a connettermi tramite cURL al servizio feed RSS di torrentz.eu.
Il servizio è dietro protocollo https, e la chiamata mi restituisce: "Received HTTP code 500 from proxy after CONNECT".
Ho cercato online, e tutti i "progetti" php su github hanno invece la chiamata con il protocollo http, che però qui restituisce: "Can't connect to torrentz.eu:80 (Bad hostname) LWP::Protocol::http::Socket: Bad hostname 'torrentz.eu' at /avsys/proxy/LWP/Protocol/http.pm line 51.".
Questo il codice:
Codice PHP:
$url = "https://torrentz.eu/feed?q=banshee";
$options = array(
CURLOPT_RETURNTRANSFER => true, // return web page
CURLOPT_HEADER => false, // don't return headers
CURLOPT_FOLLOWLOCATION => true, // follow redirects
CURLOPT_ENCODING => "", // handle all encodings
CURLOPT_USERAGENT => "MyTVSeriesHD", // who am i
CURLOPT_AUTOREFERER => true, // set referer on redirect
CURLOPT_CONNECTTIMEOUT => 120, // timeout on connect
CURLOPT_TIMEOUT => 120, // timeout on response
CURLOPT_MAXREDIRS => 10, // stop after 10 redirects
CURLOPT_SSL_VERIFYPEER => false, // Disabled SSL Cert checks
CURLOPT_SSL_VERIFYHOST => 2
);
$ch = curl_init( $url );
curl_setopt_array( $ch, $options );
$content = curl_exec( $ch );
$err = curl_errno( $ch );
$errmsg = curl_error( $ch );
$header = curl_getinfo( $ch );
curl_close( $ch );
echo $content;
echo $errmsg;
Grazie in anticipo.