diff options
author | Zach Copley <zach@controlyourself.ca> | 2009-08-04 17:19:05 +0000 |
---|---|---|
committer | Zach Copley <zach@controlyourself.ca> | 2009-08-04 17:19:05 +0000 |
commit | 0685b85d8dd7ab9629b0acbfbd7b4aae20c14103 (patch) | |
tree | 935d913fd0bde6b7eb66e826bcd93c28b7f17696 | |
parent | fe9fc152861a0131582c4aa512870d2d01bccb57 (diff) |
Use ssl for fetching frinds_timeline from Twitter since it requires auth and is a protected resource
-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, |