r = 569186681850601472
client.update('@ooidesigns work', in_reply_to_tweet_id: r)
我尝试使用twitter gem和客户端(Twitter::REST
)类回复推文,但只有推文发送消息而且不回复推文。
任何帮助表示赞赏
答案 0 :(得分:3)
好的,569186681850601472 tweet is this,对吧?它由@Ksweeg
用户制作,而不是由@ooidesigns
制作。因此,为了回复此推文,您应在推文文本中指定@Ksweeg
:
r = 569186681850601472
client.update('@Ksweeg test tweet', in_reply_to_status_id: r)
答案 1 :(得分:0)
我相信您希望使用in_reply_to_status_id
例如
client.update('@ooidesigns work', in_reply_to_status_id: 569186681850601472)