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/refreshTokenPreferences | Appearance | Tabs | Theme > Darkdstr > ttf, install all font files by double clicking)Preferences | Profiles | Text
Font to 14pt Fira code regular and Check Use Ligatures checkboxNon ASCII Font to 14pt Fira mono and Check Use Ligatures checkboxPreferences | Profiles | Color Presets > Snazzy| --- | |
| swagger: "2.0" | |
| basePath: "/test" | |
| schemes: | |
| - "https" | |
| paths: | |
| /lambdaredirect-default: | |
| get: | |
| produces: | |
| - "application/json" |
All of the below properties or methods, when requested/called in JavaScript, will trigger the browser to synchronously calculate the style and layout*. This is also called reflow or layout thrashing, and is common performance bottleneck.
Generally, all APIs that synchronously provide layout metrics will trigger forced reflow / layout. Read on for additional cases and details.
elem.offsetLeft, elem.offsetTop, elem.offsetWidth, elem.offsetHeight, elem.offsetParent| /* bling.js */ | |
| window.$ = document.querySelector.bind(document); | |
| window.$$ = document.querySelectorAll.bind(document); | |
| Node.prototype.on = window.on = function(name, fn) { this.addEventListener(name, fn); }; | |
| NodeList.prototype.__proto__ = Array.prototype; | |
| NodeList.prototype.on = function(name, fn) { this.forEach((elem) => elem.on(name, fn)); }; |