These API endpoints were extracted from decompiling the Enel X Way Android app.
https://emobility.enelx.com/api/authentication/v2/oauth/refreshTokenThese API endpoints were extracted from decompiling the Enel X Way Android app.
https://emobility.enelx.com/api/authentication/v2/oauth/refreshToken| function slugify(text) | |
| { | |
| return text.toString().toLowerCase() | |
| .replace(/\s+/g, '-') // Replace spaces with - | |
| .replace(/[^\w\-]+/g, '') // Remove all non-word chars | |
| .replace(/\-\-+/g, '-') // Replace multiple - with single - | |
| .replace(/^-+/, '') // Trim - from start of text | |
| .replace(/-+$/, ''); // Trim - from end of text | |
| } |