Example
<script>
function launchResource(username, password) {
const payload = {
username: username,
password: password,
login: "https://your-portal.example.com/login",
logout: "https://your-portal.example.com/logout",
appid: 2,
theme: "dark",
extra: {
redirectLinks: true,
redirectSound: true
}
};
// Submit as a top-level POST so the browser follows the 302 redirect
const form = document.createElement("form");
form.method = "POST";
form.action = "https://gateway.example.com/userportal/auth-handoff";
// <adjust field encoding to match the Gateway's expected content type>
document.body.appendChild(form);
form.submit();
}
</script>Last updated