I want to have something like [this account](https://twitter.com/NavalBot).
Ask HN: How can I build a Twitter bot that tweets my past tweets?
1–5 of 5 posts
Re: Ask HN: How can I build a Twitter bot that tweets my past tweets?
#2I suggest you to use Chrome extensions. Use JavaScript to capture the buttons and create events for your specific actions. Use some async/await to create some delay between actions. I hope it helped. :D
Re: Ask HN: How can I build a Twitter bot that tweets my past tweets?
#3You 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.
Re: Ask HN: How can I build a Twitter bot that tweets my past tweets?
#4You 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.
They could also download their Twitter archive which is just a csv https://help.twitter.com/en/managing-your-account/how-to-dow...
Re: Ask HN: How can I build a Twitter bot that tweets my past tweets?
#5Zapier can do it with zero coding