DEV Community

Discussion on: Como eu criei um bot para o Twitter e coloquei para executar no Heroku

Collapse
 
andypiper profile image
Andy Piper

Nice post!

Tip: you do not need to request elevated access on the Twitter API - you can do all of this with Essential access (which is free and the easiest option). Instead of using tweepy.api.update_status which uses the legacy v1.1 API, you can use tweepy.client.create_tweet which uses the new modern API v2! This API is better supported for the future, so I recommend that you look at this alternative.

Thanks for writing a nice post about the Twitter API!

Collapse
 
thaisplicando profile image
Thais Ribeiro

Wonderful Andy, as I said, it has a huge potential to improve, I will do what you suggested and by God this API is wonderful, thank you very much!