L'errore in question e' "Curl error: Received HTTP code 403 from proxy after CONNECT"
come posso risolvere? Abilitando le connsioni Server2Server, in tal caso come si fa?
Grazie.
L'errore in question e' "Curl error: Received HTTP code 403 from proxy after CONNECT"
come posso risolvere? Abilitando le connsioni Server2Server, in tal caso come si fa?
Grazie.
Puoi riportare il codice PHP dello script in questione?
L'errore é: "Curl error: Received HTTP code 403 from proxy after CONNECT"Codice PHP:
<?php
error_reporting(E_ALL);
ini_set("display_errors", 1);
$botToken = "172894271:AAHsyo*******************GRN8Y";
$botUrl = "https://api.telegram.org/bot" . $botToken;
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $botUrl."/getme");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
$result = curl_exec($ch);
if(curl_errno($ch)) { echo 'Curl error: ' . curl_error($ch);}
curl_close($ch);
echo $result;
?>
Ultima modifica di donovant : 05-02-2016 alle ore 23.17.50
Il codice è a posto, hai sbloccato le connessioni server to server?