Boa noite,
Eu quis executar os seguintes scripts:
api.update_status('Teste')
e tambem:
tweets = tw.Cursor(api.search_tweets,
q='big brother',
since='2022-01-01',
lang='pt'
).items(10)
for tweet in tweets:
print(tweet.text)
Tanto para postar um tweet como ver os tweets sobre Big Brother, deu o seguinte erro:
Forbidden: 403 Forbidden
453 - You currently have access to a subset of Twitter API v2 endpoints and limited v1.1 endpoints (e.g. media post, oauth) only. If you need access to this endpoint, you may need a different access level. You can learn more here: https://developer.twitter.com/en/portal/product
Acredito que seja por conta das mudanças recentes na API do Twitter. Tem alguma outra sugestão?
Obg!