-
-
Notifications
You must be signed in to change notification settings - Fork 45
Open
Description
Environment
- Python version: 3.11.5
- TweeterPy version: 2.0.12
Description
When I log in and immediately fetch user tweets, the response is successful. However, after loading a previously saved session, fetching the same user's tweets results in a 404 error. Additionally, after loading the session, the client_transaction
attribute becomes None
.
Steps to Reproduce
- Perform login and save session:
twitter = TweeterPy()
twitter.login()
twitter.save_session()
- Fetch user tweets (success):
twitter.get_user_tweets(44196397, pagination=False)
# → successful response, twitter.request_client.client_transaction is NOT None
- Load saved session in a new instance:
twitter = TweeterPy()
twitter.load_session()
- Attempt to fetch user tweets again (fails with 404):
twitter.get_user_tweets(44196397, pagination=False)
# → 404 response, twitter.request_client.client_transaction is None
Metadata
Metadata
Assignees
Labels
No labels