d60
d60
@fl0wo https://github.com/d60/twikit/blob/main/ToProtectYourAccount.md
@aini1123x Pass media_ids as a list, not as a string. ```python client.create_tweet(text="i love musk",media_ids=["1788113005861027840"]) ```
Thanks!
@Epikcoder You can retrieve more tweets using the 'next' method. ```python tweets = client.get_user_tweets(code, 'Tweets') more_tweets = tweets.next() ``` However it would be impossible to retrieve all 7,628,024 tweets due...
It seems that twitter has implemented a measure against automated logins. Using cookies copied from the browser should still work. Use this method until a workaround is found.
Hi everyone. I’ve published a version that might fix the subtasks issue though I can’t say it’s fully resolved. Please try it out and let me know if it works...
I found that this error is related to the User-Agent. In my environment, I encountered the error when using a Windows UA, but I was able to log in successfully...
@DuffyAdams update twijit to the latest version first. ``` python -m pip install -U twikit ```
@caronies update httpx to the latest version
Hello everyone. If you're still encountering the error `flow name LoginFlow is currently not accessible`, try setting the following user agent. `Mozilla/5.0 (platform; rv:geckoversion) Gecko/geckotrail Firefox/firefoxversion` In my case, any...