-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathheaderCollection.py
30 lines (29 loc) · 1.14 KB
/
headerCollection.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
plainHeaders = {
'accept': 'text/javascript, text/html, application/xml, text/xml, */*',
'accept-language': 'de-DE,de;q=0.9,en-US;q=0.8,en;q=0.7',
'content-type': 'application/x-www-form-urlencoded; charset=UTF-8',
'sec-ch-ua': '"Chromium";v="112", "Google Chrome";v="112", "Not:A-Brand";v="99"',
'sec-ch-ua-mobile': '?0',
'sec-ch-ua-platform': '"Windows"',
'sec-fetch-dest': 'empty',
'sec-fetch-mode': 'cors',
'sec-fetch-site': 'same-site',
'referrer': 'https://www.omegle.com/',
'referrerPolicy': 'strict-origin-when-cross-origin'
}
jsonHeaders = {
'accept': 'application/json',
'accept-language': 'de-DE,de;q=0.9,en-US;q=0.8,en;q=0.7',
'content-type': 'application/x-www-form-urlencoded; charset=UTF-8',
'sec-ch-ua': '\"Chromium\";v=\"112\", \"Google Chrome\";v=\"112\", \"Not:A-Brand\";v=\"99\"',
'sec-ch-ua-mobile': '?0',
'sec-ch-ua-platform': '\"Windows\"',
'sec-fetch-dest': 'empty',
'sec-fetch-mode': 'cors',
'sec-fetch-site': 'same-site',
'referrer': 'https://www.omegle.com/',
'referrerPolicy': 'strict-origin-when-cross-origin',
'method': 'POST',
'mode': 'cors',
'credentials': 'omit'
}