Link auto login
var applicationId = "...";
var applicationTitle = "...";
var companyId = "...";
var siteId = "...";
var userId = "...";
var password = "...";
var languageId = "..."; // e.g. "it"
var backendUrl = "https://<yourhostandport>/<platformcontextpath>/";
backendUrl +=
"/4ws/index_app.jsp?autoLogin=true&"+
"applicationId="+applicationId+"&"+
"appTitle="+applicationTitle+"&"+
"companyId="+companyId+"&"+
"siteId="+siteId;
backendUrl += "&username=" + encodeURIComponent(userId);
backendUrl += "&password=" + encodeURIComponent(password);
backendUrl += "&languageId="+languageId+"&theme4ws=false&loginVersion=1&isIE=true";
//backendUrl += "&hiddenItemIds=companyId=00000,siteId=100";
PreviousUtility methodsNextCreation of a link for the first access of a new user without give the user a password and forcing
Last updated