-
Notifications
You must be signed in to change notification settings - Fork 1
/
cookies.py
52 lines (51 loc) · 1.35 KB
/
cookies.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
def manage_cookies(username):
"""Session cookies for automatic joining process - Zoom Web"""
cookies = [{
"domain": ".zoom.us",
"hostOnly": False,
"httpOnly": False,
"name": "_zm_lang",
"path": "/",
"secure": True,
"session": False,
"storeId": "1",
"value": "en-US",
"id": 1
},
{
"domain": ".zoom.us",
"hostOnly": False,
"httpOnly": True,
"name": "_zm_wc_remembered_name",
"path": "/",
"secure": True,
"session": False,
"storeId": "1",
"value": username,
"id": 2
},
{
"domain": ".zoom.us",
"hostOnly": False,
"httpOnly": False,
"name": "OptanonAlertBoxClosed",
"path": "/",
"secure": False,
"session": False,
"storeId": "1",
"value": "2021-12-09",
"id": 3
},
{
"domain": ".zoom.us",
"hostOnly": False,
"httpOnly": False,
"name": "OptanonConsent",
"path": "/",
"secure": False,
"session": False,
"storeId": "1",
"value": "isGpcEnabled=1&datestamp=0&version=6.21.0&isIABGlobal=false&hosts=&consentId=0&interactionCount=1&landingPath=NotLandingPage&groups=0&geolocation=0&AwaitingReconsent=false",
"id": 4
}]
return cookies