-
-
Notifications
You must be signed in to change notification settings - Fork 975
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Twitter] [Enhancement] Bypass blocks by "logging out" #1719
Comments
I assume by "blocks" you mean Twitter's rate limit, i.e. Resetting this rate limit does not work by simply doing a re-login, it seems. I tried testing this with my own account and the rate limit is still active after logging in a second time. Maybe doing an actual logout instead of just deleting the session cookies does something different, but I doubt it. What would work, though, is requesting a new guest token when not logged in. |
I mean actual blocks as in |
Should now be possible with commit 52984f7 and the |
Sadly no. It detects that I'm blocked but it doesn't log out correctly. Maybe it's the fact that I'm using cookies as well?
My twitter config (minus the cookie file which is in the global part of the config): "twitter":{
"skip":"abort:2",
"text-tweets":true,
"retweets":true,
"qouted":true,
"logout":true,
"directory":{
"retweet_id != 0 or author['name']!=user['name']": ["twitter", "{user[name]}", "Retweets"],
"" : ["twitter", "{user[name]}"]
},
"filename":{
"retweet_id != 0 or author['name']!=user['name']": "twitter-{author[name]}-{tweet_id}-{retweet_id}-{num}.{extension}",
"" : "twitter-{author[name]}-{tweet_id}-{num}.{extension}"
},
"likes": { "directory": ["Twitter", "{user_likes}", "Likes"] }
} |
delete 'auth_token' cookie and cookies.txt path
The problem was leaving the |
Actually, assuming this isn't out of scope, should the block-evasion kick in when searching Otherwise it's not possible to get all tweets from someone who blocked you Not too sure how that should be handled though |
It can only kick in when Twitter sends an error and gallery-dl can react to that, and I don't think that happens for searches. Presumably Twitter just doesn't show tweets from |
It seems |
Maybe the tweets from "twitter": {
"search": {"cookies": null}
} |
I think this feature may not be working anymore, as it seems like sometime during January it stopped prompting the error message saying user was unauthorized and now it prints this message instead |
@CaptainJawZ should work again with a5163e4 |
Admittedly this is probably against Twitter TOS (assuming GDL isn't already), but it'd be nice
Personally I think this should be off by default and a warning should be put in the configuration.rst entry just to be safe
The text was updated successfully, but these errors were encountered: