diff options
author | Zach Copley <zach@controlyourself.ca> | 2009-08-04 17:19:05 +0000 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-08-24 11:54:35 -0400 |
commit | aa4066bac6415f900d7179816eb269e9f50a1103 (patch) | |
tree | 3b54ed9beb8db5d51101b390683f503bb2b4e9f3 /lib/twitteroauthclient.php | |
parent | fd9d653eb3794c491ff162e165b51ad36762d55d (diff) |
Use ssl for fetching frinds_timeline from Twitter since it requires auth and is a protected resource
Diffstat (limited to 'lib/twitteroauthclient.php')
-rw-r--r-- | lib/twitteroauthclient.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/twitteroauthclient.php b/lib/twitteroauthclient.php index aabda8d6a..c5f114fb0 100644 --- a/lib/twitteroauthclient.php +++ b/lib/twitteroauthclient.php @@ -42,7 +42,7 @@ class TwitterOAuthClient extends OAuthClient function statuses_friends_timeline($since_id = null, $max_id = null, $cnt = null, $page = null) { - $url = 'http://twitter.com/statuses/friends_timeline.json'; + $url = 'https://twitter.com/statuses/friends_timeline.json'; $params = array('since_id' => $since_id, 'max_id' => $max_id, 'count' => $cnt, |