Replies: 4 comments
-
Please do use |
Beta Was this translation helpful? Give feedback.
-
also make sure you are on latest version |
Beta Was this translation helpful? Give feedback.
-
Hi, I have updated the pip install --upgrade tweety-ns
# Importing the necessary library
from tweety import Tweet
# Attempting to sign in as user xxxxx
try:
tweet = Tweet.sign_in(username='xxxxxx', password='your_password_here')
except Exception as e:
print(f"Error signing in as xxxx: {e}")
The error message I receive is:
Error signing in as xxxxxx: [357] Either flow_name or flow_token need to be defined
It seems that even after updating the library, the error persists. Could you please advise on how to resolve this issue?
Thank you!
|
Beta Was this translation helpful? Give feedback.
-
Do update to latest version and try |
Beta Was this translation helpful? Give feedback.
-
Hello,
I've been using
tweety
for a while now to interact with Twitter's API. However, as of today, I'm encountering an issue where the login process fails, requestingflow_name
orflow_token
. This problem started suddenly and has halted my ability to authenticate.Here is the error message I am receiving:
Error signing in as [username]: [357] Either flow_name or flow_token need to be defined
Here is the code snippet I am using to sign in:
Beta Was this translation helpful? Give feedback.
All reactions