我正在编写一个小的推特API(使用Elliot Haughin's library),我想回复该应用发布的转推。
我已阅读statues/update的文档,并尝试使用'* in_reply_to_status_id *',其值取自'* user_mentions *',但似乎不起作用。
我做错了什么,或者有更好的方法吗?
代码示例;
$answer = '@'.$retweet->entities->user_mentions[0]->screen_name.' thanks!!';
$this->tweet->call('post', 'statuses/update', array('status' => $answer, 'in_reply_to_status_id' => $retweet->id));
答案 0 :(得分:0)
您应该包含转发帖子的用户的名称,而不是帖子中提到的用户名。
$answer = '@'.$retweet->user->screen_name.' thanks!!';
对于cource来说,要使用此功能,您应该使用include_entities => 1