0

我正在使用 Elliot Haughin 的 Twitter API 和 Codeigniter。我想获取推文的实体。这是我的代码

$user = $this->tweet->call('get', 'statuses/user_timeline', array('include_entities' => 'true', 'count' => '2'));

但它没有显示实体。任何人都可以帮忙吗?

谢谢

4

1 回答 1

-1

像这样添加一个屏幕名称怎么样:

$user = $this->tweet->call('get', 'statuses/user_timeline', array('screen_name' => 'biz', 'include_entities' => 'true', 'count' => '2'));
于 2012-04-24T22:32:53.370 回答