Issue 34911: Allow Cookies for Secure WebSockets (original) (raw)

Created on 2018-10-05 23:38 by pizzapanther, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 9734 merged python-dev,2018-10-05 23:44
Messages (2)
msg327199 - (view) Author: Paul Bailey (pizzapanther) * Date: 2018-10-05 23:38
http.cookiejar.DefaultCookiePolicy should support the secure websocket protocol wss. WebSockets start off as HTTP requests and then get upgraded but have a different protocol of `wss` instead of `https`. This means secure cookies are not passed through by default.
msg327367 - (view) Author: Andrew Svetlov (asvetlov) * (Python committer) Date: 2018-10-08 18:49
New changeset 4c339970570d07916bee6ade51f4e9781d51627a by Andrew Svetlov (Paul Bailey) in branch 'master': bpo-34911: Added support for secure websocket cookies (GH-9734) https://github.com/python/cpython/commit/4c339970570d07916bee6ade51f4e9781d51627a
History
Date User Action Args
2022-04-11 14:59:06 admin set github: 79092
2018-10-08 18:50:04 asvetlov set status: open -> closedstage: patch review -> resolvedresolution: fixedversions: + Python 3.8
2018-10-08 18:49:37 asvetlov set nosy: + asvetlovmessages: +
2018-10-05 23:44:11 python-dev set keywords: + patchstage: patch reviewpull_requests: + <pull%5Frequest9120>
2018-10-05 23:38:48 pizzapanther create