If somebody needs to connect without access to the "login-wifi", you can use the following script in the browser console:
let password = "PASSWORD";
let result = await (await fetch(
"https://IP/v1/user/setting/login",
{
method: "PUT",
body: JSON.stringify({"password": password}),
headers: {
"Charset": "UTF-8",
"Content-Type": "application/json",
},
})).json();
sessionStorage.setItem('auth_key', result.auth_key)
sessionStorage.setItem("role", "user")
Not sure where to document.
If somebody needs to connect without access to the "login-wifi", you can use the following script in the browser console:
Not sure where to document.