以简单的方式或工具在 Twitter(机器人)中自动回复推文?
是任何可能的&制作一个 Twitter 机器人的简单方法,它将在一定的时间间隔内回复一些推文(取决于搜索词)。谁能帮助我。
例如 twitter.com/shastribot
谢谢
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
是任何可能的&制作一个 Twitter 机器人的简单方法,它将在一定的时间间隔内回复一些推文(取决于搜索词)。谁能帮助我。
例如 twitter.com/shastribot
谢谢
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
如果您喜欢 Ruby,那么我建议使用 Twitter gem:https://github.com/jnunemaker/twitter
它使事情变得非常容易。
然后,您可以编写一个脚本来检查是否有对机器人的任何回复,以及是否有任何新的回复发送消息。然后将其设置为 cron 作业,根据您认为需要的频率运行。
还有 Twitter 的 Twitter Bot 接口,我自己没有使用过,但可能值得一看:http:// /integrum.rubyforge.org/twitter_bot/
If you like Ruby, then I suggest using the Twitter gem: https://github.com/jnunemaker/twitter
It makes things very easy.
You could then write a script that checks whether there are any replies to the bot and if there are any new ones sends out a message. Then set it up as a cron job running as often as you think is necessary.
There's also the Twitter Bot interface to Twitter, I haven't used it myself but might be worth a look: http://integrum.rubyforge.org/twitter_bot/
您应该尝试 tweebot。它是 Twitter 机器人的 Python 微框架。该库提供了内置块(如过滤器、选择器和操作),您可以组合这些块来实现您的要求。例如,下一个代码演示了如何创建“retweet”机器人的规范实现(更多示例< /a>)。
You should try tweebot. It's python micro framework for twitter bots. This lib provides built-in blocks (like Filters, Selectors and Actions) that you can combine to achieve your requirements. For example, next code demonstrates how-to create canonical implementation of "retweet" bot (more examples).
Ruby 的 twitter gem 是一个非常好的 gem。您可以使用 twitter API 查看可用的方法。
您可以从 Twitter::REST::Client 开始,如下所示:
然后您可以将您的 twitter_client 用于各种目的。例如,您可以使用以下方式将推文发布到您的个人资料中:
您可以通过提供 twitter 用户名来获取所有推文的列表,如下所示:
要搜索推文,请查看 此。
Ruby's twitter gem is a very good one. You can make use of twitter API to see the available methods.
You can start with a Twitter::REST::Client like following:
Then you can you use your twitter_client for various purpose. For example you can post a tweet to your profile using this:
You can get a list of all tweets by providing the twitter username like this:
For searching for tweets, take a look at this.