n8n-nodes-jygse-vw-weconnect 0.2.8 → 0.2.10
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,8 +175,8 @@ class VwWeConnect {
|
|
|
175
175
|
}
|
|
176
176
|
}
|
|
177
177
|
exports.VwWeConnect = VwWeConnect;
|
|
178
|
-
// VW OAuth2 Configuration (Updated January 2026 - "go" type for
|
|
179
|
-
// Note: This is for We Connect Go (T6.1 California, etc.)
|
|
178
|
+
// VW OAuth2 Configuration (Updated January 2026 - "go" type for We Connect App from ioBroker.vw-connect)
|
|
179
|
+
// Note: This is for We Connect / We Connect Go (T6.1 California, etc.)
|
|
180
180
|
const VW_CLIENT_ID = 'ac42b0fa-3b11-48a0-a941-43a399e7ef84@apps_vw-dilab_com';
|
|
181
181
|
const VW_SCOPE = 'openid profile mbb email cars birthdate badge address vin';
|
|
182
182
|
const VW_REDIRECT_URI = 'vwconnect://de.volkswagen.vwconnect/oauth2redirect/identitykit';
|
|
@@ -225,10 +225,9 @@ async function vwLogin(context, email, password) {
|
|
|
225
225
|
'x-requested-with': VW_APP_PACKAGE,
|
|
226
226
|
'upgrade-insecure-requests': '1',
|
|
227
227
|
};
|
|
228
|
-
// Generate PKCE code challenge
|
|
228
|
+
// Generate PKCE code challenge
|
|
229
229
|
const codeChallenge = generateCodeChallenge(codeVerifier);
|
|
230
230
|
// Step 1: Go directly to identity.vwgroup.io (like ioBroker adapter)
|
|
231
|
-
// Note: VW v2 (T6.1, etc.) uses PKCE with S256
|
|
232
231
|
// Build URL manually like ioBroker does (pre-encoded values)
|
|
233
232
|
const authorizeUrl = 'https://identity.vwgroup.io/oidc/v1/authorize' +
|
|
234
233
|
'?client_id=' + encodeURIComponent(VW_CLIENT_ID) +
|
|
@@ -240,7 +239,7 @@ async function vwLogin(context, email, password) {
|
|
|
240
239
|
'&code_challenge=' + codeChallenge +
|
|
241
240
|
'&code_challenge_method=S256';
|
|
242
241
|
// Use browser-like headers for initial request
|
|
243
|
-
//
|
|
242
|
+
// Skip auto redirects so we can handle vwconnect:// redirect manually
|
|
244
243
|
const authorizeResponse = await context.helpers.httpRequest({
|
|
245
244
|
method: 'GET',
|
|
246
245
|
url: authorizeUrl,
|
|
@@ -248,7 +247,7 @@ async function vwLogin(context, email, password) {
|
|
|
248
247
|
encoding: 'text',
|
|
249
248
|
returnFullResponse: true,
|
|
250
249
|
ignoreHttpStatusErrors: true,
|
|
251
|
-
|
|
250
|
+
skipAutoFollowRedirects: true,
|
|
252
251
|
});
|
|
253
252
|
// Extract response body and check for redirect
|
|
254
253
|
let htmlContent;
|
package/package.json
CHANGED