-
Notifications
You must be signed in to change notification settings - Fork 1
/
environment.py
46 lines (38 loc) · 1.54 KB
/
environment.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
""" This file contains the bearer tokens and other information
used in testing the scripts. You can think of it as a postman
environment. It's NOT recommended to put production data into
this file. Especially no tokens.
"""
#biasc
biasc_token = 'ZjVlOGU3NzgtY2JlOC00NTMyLWI2MWUtNGQ3YjEwNjgzMjNjY2ZjODU4NDktODYz_PF84_e4d4112d-2548-4a47-810e-04fe45ea181f'
biasc = {
'token' : biasc_token,
'hostEmail' : '[email protected]',
'siteUrl': 'biasc.webex.com',
'headers' : {
'Authorization': f'Bearer {biasc_token}'
}}
#integration with admin
#admin_token = 'ZTcxM2JmOGMtNGIwMS00M2I3LThiNjEtMTkyYjM2ODI5MjQ5ZDkyMzlmN2ItMmUz_P0A1_8ffe788c-4bbf-4bd8-8adb-825c355cc81f'
admin_token = 'MWViOWJhZDItOGVjYi00N2FkLWIxNTctM2MxY2MyMDgzM2YyMTRkOGY5NmQtODFj_P0A1_8ffe788c-4bbf-4bd8-8adb-825c355cc81f'
int_report ={
'token' : admin_token,
'hostEmail' : '[email protected]',
'siteUrl': 'eindwerk.webex.com',
'headers' : {
'Authorization': f'Bearer {admin_token}'
}}
#integration with automation
aut_token = 'YTFiYjNiYWEtMGVjNi00NDc1LWE1NTAtZDc1MTUwOGUwOWVkMTQyMTRhZjAtMDc4_P0A1_8ffe788c-4bbf-4bd8-8adb-825c355cc81f'
int_automation ={
'token' : aut_token,
'siteUrl': 'eindwerk.webex.com',
'hostEmail' : '[email protected]',
'headers' : {
'Authorization': f'Bearer {aut_token}'
}
}
#eindwerk_automation
aut = 'MmQ5Y2M4ODAtZWJkNi00MDNjLWFiYWMtYjBiMDdiZjRjNTZkN2FlYzBjN2EtN2Jm_P0A1_8ffe788c-4bbf-4bd8-8adb-825c355cc81f'
#eindwerk admin
adm = 'NDU3ZGE5ZTEtODhlOC00YmJmLWI3ZGEtMDU5ZDg5MDdlM2ZiZjM4OWJjMTYtZTJm_P0A1_8ffe788c-4bbf-4bd8-8adb-825c355cc81f'