Closed mahlzahn closed 2 months ago
Although this function may be removed or better written in the rust library, currently it was just broken and this PR fixes it:
https_only
secure
subdomain
domain
.
#HttpOnly_
See, for instance, https://docs.cyotek.com/cyowcopy/current/netscapecookieformat.html for documentation of the netscape cookie format. The resulting cookies were also cross-checked with the output of
from http.cookiejar import MozillaCookieJar mcj = MozillaCookieJar('/tmp/cookies') for c in rookiepy.to_cookiejar(rookiepy.chromium(): mcj.set_cookie(c) mcj.save()
Thanks!
Although this function may be removed or better written in the rust library, currently it was just broken and this PR fixes it:
https_only
using the value ofsecure
of the cookiesubdomain
according todomain
starting with.
#HttpOnly_
todomain
for http-only cookiesSee, for instance, https://docs.cyotek.com/cyowcopy/current/netscapecookieformat.html for documentation of the netscape cookie format. The resulting cookies were also cross-checked with the output of