回复推文 - 使用 twitter_oauth 设置 in_reply_to_in

发布于 2024-12-11 05:54:27 字数 425 浏览 0 评论 0原文

我无法使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

深巷少女 2024-12-18 05:54:27

有同样的问题。您需要包含您要回复的推文的 Twitter 用户名。

注意::除非在状态文本中提及此参数引用的推文作者,否则此参数将被忽略。因此,您必须在更新中包含 @username,其中 username 是所引用推文的作者。

发现这个在 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.

Note:: This parameter will be ignored unless the author of the tweet this parameter references is mentioned within the status text. Therefore, you must include @username, where username is the author of the referenced tweet, within the update.

Found this at https://dev.twitter.com/docs/api/1/post/statuses/update stated in relation to in_reply_to_status_id param.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文