rhiever / TwitterFollowBot

A Python bot that automates several actions on Twitter, such as following users and favoriting tweets.
GNU General Public License v3.0
1.3k stars 448 forks source link

Automatically add users tweeting about something to one of your list #155

Open Charlie-Porter opened 2 years ago

Charlie-Porter commented 2 years ago

Hi there,

I'm having some problems running the auto_add_to_list function as its reporting the following Twitter 404 error (the other functions eg auto_fav, auto_rt run fine for me). I have also created a list called Mica in my Twitter account.

from TwitterFollowBot import TwitterBot

my_bot = TwitterBot() my_bot.auto_add_to_list("#micaredress", "Mica", count=10)

Twitter sent status 404 for URL: 1.1/lists/members/create.json using parameters: (oauth_consumer_key=xxxxxxxxxxxxxxxxxxxxxxxx&oauth_nonce=8816250879690990941&oauth_signature_method=HMAC-SHA1&oauth_timestamp=1632352154&oauth_token=xxxxxxxxxxxxxxxx-xxxxxxxxxxxxxxxxxxxxxxxx&oauth_version=1.0&owner_screen_name=%40xxxxxxxxxxxxxxx&screen_name=Drumfries123&slug=Mica&oauth_signature=xxxxxxxxxxxxxxxxxxxxxxxxxxxxx%3D) details: {'errors': [{'code': 34, 'message': 'Sorry, that page does not exist.'}

I was wondering if you have seen it previously/know the cause?

Thanks in advance

Charlie