From: Antonio Ospite Date: Mon, 12 Aug 2013 08:16:27 +0000 (+0200) Subject: Follow HTTP redirects in get_contents() too X-Git-Tag: v0.1~10 X-Git-Url: https://git.ao2.it/tweeper.git/commitdiff_plain/a5e03b78a058ccc4fc24ee142234456b78a9a713 Follow HTTP redirects in get_contents() too This is especially needed when http:// URLs are redirected to https:// --- diff --git a/tweeper.php b/tweeper.php index c2c5a04..923b303 100644 --- a/tweeper.php +++ b/tweeper.php @@ -52,6 +52,7 @@ class Tweeper { $ch = curl_init($url); curl_setopt_array($ch, array( CURLOPT_HEADER => FALSE, + CURLOPT_FOLLOWLOCATION => TRUE, // follow http redirects to get the real URL CURLOPT_RETURNTRANSFER => TRUE, CURLOPT_SSL_VERIFYHOST => FALSE, CURLOPT_SSL_VERIFYPEER => FALSE,