|
1 | | -# Delete Your Old Tweets |
| 1 | +# Delete Your Old Tweets, Retweets And Likes |
2 | 2 |
|
| 3 | +1. this application will require [NodeJS](https://nodejs.org/en/download/current) and [Yarn](https://classic.yarnpkg.com/lang/en/docs/install/) to run |
3 | 4 | 1. [Download your Twitter archive](https://twitter.com/settings/download_your_data), which contains all your tweets. |
4 | | -1. Locate the JSON contains your tweets, which is `data/tweet.js` (or `data/twitter-circle-tweet.js`) in the archive. |
| 5 | +2. Locate the JSON contains your tweets, which is `data/tweet.js` (`data/like.js` or `data/twitter-circle-tweet.js`) in the archive. |
| 6 | + |
| 7 | +3. Choose one of the following |
| 8 | + |
| 9 | +## To Delete tweets |
5 | 10 | 1. Run this project with `yarn && yarn start data/tweet.js`. |
6 | | -1. It will wait you for login |
7 | | -1. After login, it will delete all your tweets. |
| 11 | +2. It will wait you for login |
| 12 | +3. After login, it will delete all your tweets. |
| 13 | + |
| 14 | +## To Delete Twitter circle tweets |
| 15 | +1. Run this project with `yarn && yarn start data/twitter-circle-tweet.js`. |
| 16 | +2. It will wait you for login |
| 17 | +3. After login, it will delete all your circle tweets. |
| 18 | + |
| 19 | + |
| 20 | +## To Unlike previously Liked tweets |
| 21 | +1. Run this project with `yarn && yarn start data/like.js`. |
| 22 | +2. It will wait you for login |
| 23 | +3. After login, it will unlike your likes. |
| 24 | + |
| 25 | + |
| 26 | +## Commandline Arguments |
| 27 | + |
| 28 | +| argumensts | | |
| 29 | +| ------------- |:-------------:| |
| 30 | +| -debug | writes debug information to log file | |
| 31 | +| -log | writes log information to log file | |
| 32 | +| -exlog | writes all information from log and debug to log file | |
| 33 | +| -nolog | forces app to run without making a log file, could be helpful if removing large amounts of tweets/retweets/likes | |
| 34 | +| -skip %number% | skips up to the index given, good if you had to close the app or it crashed and don't have time to rerun the entire file | |
| 35 | +| -delay %ms% | the delay used between actions, try not to use below 5000ms as this could cause rate limiting | |
| 36 | +| -timeout %ms% | the timeout amount used after tweet is loaded (helpful on low bandwidth connections), try not to use below 5000ms as this could cause rate limiting | |
0 commit comments