-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconstants.py
More file actions
17 lines (16 loc) · 1.35 KB
/
Copy pathconstants.py
File metadata and controls
17 lines (16 loc) · 1.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
VW_GLOBAL_CONFIG_URL = "https://www.volkswagen.de/de.global-config.json"
VEHICLE_DATA_PATH = "https://myvw-gvf-proxy.apps.emea.vwapps.io/vehicleData/de-DE/"
MY_VEHICLES_URL = "https://vum.apps.emea.vwapps.io/users/me/vehicles"
LOUNGE_URL = "https://www.volkswagen.de/de/besitzer-und-nutzer/myvolkswagen/volkswagen-lounge.html"
LOGIN_URL = "https://www.volkswagen.de/app/authproxy/login?fag=vw-de,vw-ag-direct-sales,vwag-weconnect&scope-vw-de=profile,address,phone,carConfigurations,dealers,cars,vin,profession&scope-vw-ag-direct-sales=address,phone,profile&scope-vwag-weconnect=openid,mbb&prompt-vw-ag-direct-sales=none&prompt-vwag-weconnect=none&redirectUrl=https://www.volkswagen.de/de/besitzer-und-nutzer/myvolkswagen/volkswagen-lounge.html"
LOGOUT_URL = "https://www.volkswagen.de/app/authproxy/logout"
TOKEN_URL = "https://www.volkswagen.de/app/authproxy/vw-de/tokens"
LOUNGE_CARS_URL = "https://myvwde.cloud.wholesaleservices.de/api/waiting-lounge/cars"
TBO_CARS_URL = "https://myvwde.cloud.wholesaleservices.de/api/tbo/cars"
RELATIONS_URL_V2 = "https://vum.apps.emea.vwapps.io/v2/users/me/relations"
RELATIONS_URL_V1 = "https://vum.apps.emea.vwapps.io/v1/dataStorageManagement/users/me/relations"
VW_IDENTITY_HOST = "https://identity.vwgroup.io"
VW_HOST = "https://www.volkswagen.de"
HTTP_TIMEOUT = 60
TOKEN_VALIDITY_S = 60 * 60 # 1 Hour
BID_SEARCH_YEARS = [2021, 2020]