-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcookies.example.json
More file actions
54 lines (54 loc) · 1.13 KB
/
cookies.example.json
File metadata and controls
54 lines (54 loc) · 1.13 KB
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
53
54
[
{
"domain": ".reddit.com",
"expirationDate": 1735689600,
"hostOnly": false,
"httpOnly": true,
"name": "reddit_session",
"path": "/",
"sameSite": "no_restriction",
"secure": true,
"session": false,
"storeId": "0",
"value": "YOUR_SESSION_VALUE_HERE"
},
{
"domain": ".reddit.com",
"expirationDate": 1735689600,
"hostOnly": false,
"httpOnly": false,
"name": "token_v2",
"path": "/",
"sameSite": "no_restriction",
"secure": true,
"session": false,
"storeId": "0",
"value": "YOUR_TOKEN_VALUE_HERE"
},
{
"domain": ".reddit.com",
"expirationDate": 1735689600,
"hostOnly": false,
"httpOnly": false,
"name": "loid",
"path": "/",
"sameSite": "lax",
"secure": true,
"session": false,
"storeId": "0",
"value": "YOUR_LOID_VALUE_HERE"
},
{
"domain": ".reddit.com",
"expirationDate": 1735689600,
"hostOnly": false,
"httpOnly": false,
"name": "edgebucket",
"path": "/",
"sameSite": "lax",
"secure": true,
"session": false,
"storeId": "0",
"value": "YOUR_EDGEBUCKET_VALUE_HERE"
}
]