projects
/
tweeper.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9aa2d44
)
Follow HTTP redirects in get_contents() too
author
Antonio Ospite <ospite@studenti.unina.it>
Mon, 12 Aug 2013 08:16:27 +0000
(10:16 +0200)
committer
Antonio Ospite <ospite@studenti.unina.it>
Mon, 12 Aug 2013 08:16:27 +0000
(10:16 +0200)
This is especially needed when http:// URLs are redirected to https://
tweeper.php
patch
|
blob
|
history
diff --git
a/tweeper.php
b/tweeper.php
index
c2c5a04
..
923b303
100644
(file)
--- 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,