-
Notifications
You must be signed in to change notification settings - Fork 49
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
Ad-hoc cookies retrieval during runtime? #400
Comments
Note that the session object handles cookies automatically, so the next request will use the cookie set by the previous response (suppose they both use the same session.) |
A chain of same-session requests will accumulate cookies values right? Does |
I see in a module, cookies can be specified in 2 locations: |
Yes. It works like browser sessions.
Yes. they use
In
When a site requires login, users used to specify credentials in Another method to set cookies is to use curl configs. Still, it is more convenient to read from the browser automatically. |
I see, you keep P/s: I was wrong. Turns out downloading the encrypted image of Colamanga doesn't require any cookies value. I wrote my progress here, can you check it. |
Do you use Discord, sometimes I want to ask something with faster reply time so I can continue working on the problem. |
This is your reply from worker_vm#2:
Yes, I know what cookies Colamanga used to authenticate, so I can populate them manually.
All 3 required populating cookies manually either by going to the website once, open DevTools and copy the cookie or specify
browser=
insetting.ini
(btw 3 is actually the last step of 1). What if I know the API that set the authentication cookies, can I fetch it and retrieve the cookies from response object? It could become the 4th way.The text was updated successfully, but these errors were encountered: