回复推文 - 使用 twitter_oauth 设置 in_reply_to_in
我无法使用 twitter_oauth 回复推文。 这是我的代码
@twitter_client = TwitterOAuth::Client.new(
:consumer_key => 'key ',
:consumer_secret => 'secret',
:token => token,
:secret => secret
)
response = @twitter_client.update(response_description, {"in_reply_to_status_id" => tweet_id})
logger.info response.inspect
,它发布推文,但不作为回复。
I am not able to reply to tweets usign twitter_oauth.
Here is my code
@twitter_client = TwitterOAuth::Client.new(
:consumer_key => 'key ',
:consumer_secret => 'secret',
:token => token,
:secret => secret
)
response = @twitter_client.update(response_description, {"in_reply_to_status_id" => tweet_id})
logger.info response.inspect
It posts the tweet but not as a reply.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有同样的问题。您需要包含您要回复的推文的 Twitter 用户名。
发现这个在 https://dev.twitter.com/docs/api/ 1/post/statuses/update 与 in_reply_to_status_id 参数相关。
Had the same problem. You need to include the twitter username of the tweet to which you are replying.
Found this at https://dev.twitter.com/docs/api/1/post/statuses/update stated in relation to in_reply_to_status_id param.