You are here

public function Twitter::friends_timeline in Twitter 6.3

Fetch the authenticated user's friends timeline

See also

http://apiwiki.twitter.com/Twitter-REST-API-Method%3A-statuses-friends_t...

File

./twitter.lib.php, line 156
Classes to implement the full Twitter API

Class

Twitter
Primary Twitter API implementation class Supports the full REST API for twitter.

Code

public function friends_timeline($params = array()) {
  return $this
    ->get_statuses('statuses/friends_timeline', $params, TRUE);
}