Was looking at this over the weekend actually. There "may" be a way to do it if you are following the account. As twitter home page will auto update with tweets from those you follow, so making requests to get an update every few seconds is how the page works, so no issue with other requests there. Then just filter out everything but who you want to watch.
But the twitter API would probably still be better with there instant notification stream functions
wrote a linux script that checks user , can reply if the new tweet is found newer than last time it checked , can check every second/min/etc and can reply
is that what you wanted ?
wrote a linux script that checks user , can reply if the new tweet is found newer than last time it checked , can check every second/min/etc and can reply
is that what you wanted ?
My only concern with just using a regular script without using the API is that Twitter might ban your IP? I am not a coder at all.
https://help.twitter.com/en/rules-and-policies/twitter-automation
Don’t! Use non-API-based forms of automation, such as scripting the Twitter website. The use of these techniques may result in the permanent suspension of your account.
Maybe if they don't ban the IP, you would just need something to check Twitter under 1 IP, but log-in and post under a different IP (proxy).
Here are the rate limits for the API. Not sure what all of this means to be honest:
https://developer.twitter.com/en/docs/basics/rate-limits
I could probably develope something like this, web based through an dashboard/admin panel. Just need to know how it should work like as I am not into twitter that much.
So lets say you have a specific person you follow and as soon as they tweet something, you retweet it? What text will it be? Is or should the text be static or dynamic? How many persons you want to be? Is it only about one single person or a few specific persons? And isn't there already tools for that?
wrote a linux script that checks user , can reply if the new tweet is found newer than last time it checked , can check every second/min/etc and can reply
is that what you wanted ?
could you not just scrape the twitter page on one ip(and diff instance) and keep doing it until there's an update. When there's an update, use tweepy(or whatever you'd like) to tweet?
Respectfully, if someone needs to explain to you how to do it, you are not going to be able to do itSomeone should really explain me that abit so I could start workin on that.
Having some free time to spend tho![]()
Then use the STREAM functions. Declare who you want to stream and twitter will notify you instantly (ish) when the user tweets. It will be MUCH more effective than scraping the userfeed as you will have to limit yourself, which goes against the spec of tweeting within a few secondsi used api