Hi all, I added security to my Vaadin application exactly as described by this official video of vaadin
https://www.youtube.com/watch?v=dZuy1v9isXE&ab_channel=vaadinofficial
After adding it, I added authorization to my Rest request (Im sending them via Postman. In the authorization tab of the request i chose “Basic Auth” and added the username and password), and tried to send it, but got back a very weird body in the 200 response:
<!doctype html>
window.Vaadin = window.Vaadin || {};window.Vaadin.VaadinLicenseChecker = { maybeCheck: (productInfo) => {} };window.Vaadin.devTools = window.Vaadin.devTools || {};window.Vaadin.devTools.createdCvdlElements = window.Vaadin.devTools.createdCvdlElements || [];window.Vaadin.originalCustomElementDefineFn = window.Vaadin.originalCustomElementDefineFn || window.customElements.define;window.customElements.define = function (tagName, constructor, ...args) {const { cvdlName, version } = constructor;if (cvdlName && version) { const { connectedCallback } = constructor.prototype; constructor.prototype.connectedCallback = function () { window.Vaadin.devTools.createdCvdlElements.push(this); if (connectedCallback) { connectedCallback.call(this); } } }window.Vaadin.originalCustomElementDefineFn.call(this, tagName, constructor, ...args); };there is more but i reached maximum length