n8n-nodes-jygse-vw-weconnect 0.2.2 → 0.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -175,11 +175,12 @@ class VwWeConnect {
|
|
|
175
175
|
}
|
|
176
176
|
}
|
|
177
177
|
exports.VwWeConnect = VwWeConnect;
|
|
178
|
-
// VW OAuth2 Configuration (Updated January 2026 - from ioBroker.vw-connect)
|
|
178
|
+
// VW OAuth2 Configuration (Updated January 2026 - VW ID type from ioBroker.vw-connect)
|
|
179
|
+
// Note: This is for VW ID (newer vehicles like ID.3, ID.4, T6.1 with WeConnect)
|
|
179
180
|
const VW_CLIENT_ID = 'a24fba63-34b3-4d43-b181-942111e6bda8@apps_vw-dilab_com';
|
|
180
|
-
const VW_SCOPE = 'openid profile
|
|
181
|
+
const VW_SCOPE = 'openid profile mbb email cars birthdate badge address vin';
|
|
181
182
|
const VW_REDIRECT_URI = 'weconnect://authenticated';
|
|
182
|
-
const VW_RESPONSE_TYPE = '
|
|
183
|
+
const VW_RESPONSE_TYPE = 'id_token token code';
|
|
183
184
|
// WeConnect App headers (from ioBroker.vw-connect v0.7.15)
|
|
184
185
|
const VW_USER_AGENT = 'Mozilla/5.0 (Linux; Android 14; SM-G960F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Mobile Safari/537.36';
|
|
185
186
|
const VW_APP_PACKAGE = 'com.volkswagen.weconnect';
|
package/package.json
CHANGED