From 50e26f5ac1f0c1c5de5d081dbfd23fa5aa731fec Mon Sep 17 00:00:00 2001 From: rliegmann Date: Sun, 2 Jul 2023 23:24:55 +0200 Subject: [PATCH 1/2] fix tocken generation --- seatconnect/connection.py | 2 +- seatconnect/const.py | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/seatconnect/connection.py b/seatconnect/connection.py index d299ea1..38948fa 100644 --- a/seatconnect/connection.py +++ b/seatconnect/connection.py @@ -262,7 +262,7 @@ def extract_guest_language_id(req): tokenBody = { 'auth_code': jwt_auth_code, 'id_token': jwt_id_token, - 'brand': BRAND + 'brand': 'cupra' } tokenURL = 'https://tokenrefreshservice.apps.emea.vwapps.io/exchangeAuthCode' req = await self._session.post( diff --git a/seatconnect/const.py b/seatconnect/const.py index 3bae97f..a3f0725 100644 --- a/seatconnect/const.py +++ b/seatconnect/const.py @@ -8,20 +8,20 @@ # Data used in communication CLIENT_LIST = { 'seat': { - 'CLIENT_ID': '50f215ac-4444-4230-9fb1-fe15cd1a9bcc@apps_vw-dilab_com', + 'CLIENT_ID': '30e33736-c537-4c72-ab60-74a7b92cfe83@apps_vw-dilab_com', 'SCOPE': 'openid profile address phone email birthdate nationalIdentifier cars mbb dealers badge nationality', - 'TOKEN_TYPES': 'code id_token' + 'TOKEN_TYPES': 'code id_token token' } } #XCLIENT_ID = '3516bc10-fabd-4eb2-b41c-b38e21e9d8f6' -XCLIENT_ID = 'c34af3dc-f9d0-4bff-a5db-f0af674929f0' +XCLIENT_ID = '9d183b70-d129-424f-9a26-c3778edf95e1' XAPPVERSION = '1.4.0' XAPPNAME = 'SEATConnect' USER_AGENT = 'okhttp/3.10.0' -APP_URI = 'seatconnect://identity-kit/login' +APP_URI = 'cupraconnect://identity-kit/login' HEADERS_SESSION = { 'Connection': 'keep-alive', From af320317e7c0579a2528c9d0a9759176ab5be07a Mon Sep 17 00:00:00 2001 From: rliegmann Date: Sun, 2 Jul 2023 23:25:02 +0200 Subject: [PATCH 2/2] bump version --- seatconnect/__version__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seatconnect/__version__.py b/seatconnect/__version__.py index 7aa9e3f..e55ffa6 100644 --- a/seatconnect/__version__.py +++ b/seatconnect/__version__.py @@ -3,4 +3,4 @@ For more details and documentation, visit the github page at https://github.com/farfar/seatconnect """ -__version__ = "1.1.6" +__version__ = "1.1.7"