TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: How can I build a Twitter bot that tweets my past tweets?

4 点作者 tai_hn超过 6 年前
I want to have something like [this account](https://twitter.com/NavalBot).

3 条评论

marketgod超过 6 年前
You can use the Twitter API. Get a list of all tweets, store them to a database/flat file, then randomly tweet each one using a SQL select. That's how I'd do it. The reason for the database/flat file is because sometimes you may have more tweets than the API can pull.
评论 #18661093 未加载
siquick超过 6 年前
Zapier can do it with zero coding<p><a href="https:&#x2F;&#x2F;zapier.com&#x2F;apps&#x2F;twitter&#x2F;integrations" rel="nofollow">https:&#x2F;&#x2F;zapier.com&#x2F;apps&#x2F;twitter&#x2F;integrations</a>
cristianexer超过 6 年前
I suggest you to use Chrome extensions. Use JavaScript to capture the buttons and create events for your specific actions. Use some async&#x2F;await to create some delay between actions. I hope it helped. :D