-
Notifications
You must be signed in to change notification settings - Fork 2
/
client_secrets.example.py
45 lines (41 loc) · 1.02 KB
/
client_secrets.example.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
"""
EXAMPLE FILE; DO NOT AMEND
"""
TAPIS_CLIENTS = {
'PORTALS': [
{
'base_url': 'https://portals.develop.tapis.io',
'client_id': '',
'client_key': '',
'access_token': '',
'refresh_token': '',
},
{
'base_url': 'https://portals.tapis.io',
'client_id': '',
'client_key': '',
'access_token': '',
'refresh_token': '',
}
],
'A2CPS': [
{
'base_url': 'https://a2cps.develop.tapis.io',
'client_id': '',
'client_key': '',
'access_token': '',
'refresh_token': ''
},
{
'base_url': 'https://a2cps.tapis.io',
'client_id': '',
'client_key': '',
'access_token': '',
'refresh_token': '',
}
]
}
CLIENT_USERNAME = ''
CLIENT_PASSWORD = ''
USER_CREDENTIAL_PRIVATE_KEY = """PASTE KEY HERE"""
USER_CREDENTIAL_PUBLIC_KEY = """PASTE KEY HERE"""