-
Notifications
You must be signed in to change notification settings - Fork 144
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
browser_cookie3 using outdated cookies? #183
Comments
Maybe you have different places where the cookies are stored and thus it finds the wrong ones. Depending on your system the cookie file is automatically chosen by the first file it finds, see for the corresponding code lines here: browser_cookie3/browser_cookie3/__init__.py Lines 591 to 617 in 53fa5e3
You can also give directly the path of the correct cookie file to the function call: browser_cookie3.chrome(cookie_file='path/to/correct/cookie_file', ...) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello, I am having a problem with browser cookie 3 not returning the most recent cookie values. I'm trying to access to access two different cookies, one of them is correct, but the other one does not have the same value as when I check in chrome dev tools. I have deleted/changed/reloaded the cookie in chrome and it still does not change in my python script. The only thing different about these two cookies is that the one that isn't updating has an expiration date (in a year), while the correct one has no expiration date.
This is what I am using to get the cookie values:
The first one is not updating. I'm not sure about the second one, but the first one is not the same as the value I see in chrome dev tools and I have tried everything to get it to refresh.
The text was updated successfully, but these errors were encountered: