Hello, i am trying to intergrate the Splunk Ui Toolkit into my own Splunk instace that is running on localhost. I am using react to get a sessionkey with the following function: async function GetSessionKey(username, password, server) { var key = await fetch(server + "/services/auth/login", { method: "POST", body: new URLSearchParams({ username: username, password: password, output_mode: "json", }), headers: { "Content-Type": "application/x-www-form-urlencoded", }, }) .then((response) => response.json()) .then((data) => { return data["sessionKey"]; }); But i always get this on my network showing
... View more