我已经设置了 Phil Sturgeon 的 Rest 库以连接到 Twitter API - 但是效果很好(见下文)
$this->load->spark('restclient/2.1.0');
$this->load->library('rest');
$this->rest->initialize(array('server' => 'http://twitter.com/'));
$username = 'my-username';
// Pull in an array of tweets
$tweets = $this->rest->get('statuses/user_timeline/'.$username.'.xml');
这段代码很好用——但是 Twitter API文档建议使用稍微不同的方法(见下文)——我将如何在这个库中使用下面的新方法?
https://api.twitter.com/1/statuses/user_timeline.json?include_entities=true&include_rts=true&screen_name=twitterapi&count=2