n8n-nodes-jygse-vw-weconnect 0.1.6 → 0.1.7
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.
|
@@ -141,11 +141,11 @@ class VwWeConnect {
|
|
|
141
141
|
}
|
|
142
142
|
}
|
|
143
143
|
exports.VwWeConnect = VwWeConnect;
|
|
144
|
-
// VW OAuth2 Configuration (Updated January 2026)
|
|
145
|
-
const VW_CLIENT_ID = '
|
|
146
|
-
const VW_SCOPE = 'openid profile
|
|
147
|
-
const VW_REDIRECT_URI = '
|
|
148
|
-
const VW_RESPONSE_TYPE = '
|
|
144
|
+
// VW OAuth2 Configuration (Updated January 2026 - from ioBroker.vw-connect)
|
|
145
|
+
const VW_CLIENT_ID = '9496332b-ea03-4091-a224-8c746b885068@apps_vw-dilab_com';
|
|
146
|
+
const VW_SCOPE = 'openid profile mbb email cars birthdate badge address vin';
|
|
147
|
+
const VW_REDIRECT_URI = 'carnet://identity-kit/login';
|
|
148
|
+
const VW_RESPONSE_TYPE = 'id_token token code';
|
|
149
149
|
// Generate PKCE code verifier and challenge
|
|
150
150
|
function generateCodeVerifier() {
|
|
151
151
|
const chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-._~';
|
package/package.json
CHANGED