Fix SSL options for Twitter bridge HTTP requests

This commit is contained in:
Zach Copley 2009-11-24 19:11:34 +00:00
parent 9694e3e4cf
commit 3556861596
2 changed files with 3 additions and 1 deletions

View File

@ -197,6 +197,7 @@ class OAuthClient
'timeout' => 120,
'follow_redirects' => true,
'ssl_verify_peer' => false,
'ssl_verify_host' => false
));
// Twitter is strict about accepting invalid "Expect" headers

View File

@ -183,7 +183,8 @@ class TwitterBasicAuthClient
'follow_redirects' => true,
'connect_timeout' => 120,
'timeout' => 120,
'ssl_verifypeer' => false,
'ssl_verify_peer' => false,
'ssl_verify_host' => false
));
if ($auth) {