0

Codeigniter で Elliot Haughin の Twitter API を使用しています。ツイートのエンティティを取得したい。これが私のコードです

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

ただし、エンティティは表示されません。誰でも助けることができますか?

ありがとう

4

1 に答える 1

-1

次のように screen_name を追加するのはどうですか:

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