Getting Data In

401 Unauthorized when trying to use REST API

yallami
Explorer

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

yallami_0-1725610292404.png

 

Labels (1)
0 Karma

yallami
Explorer

Thank you for your answers. It turned out, I had to trust the ssl certificate.

tscroggins
Influencer

Hi @yallami,

At a glance, do username and password contain special or unsafe characters? You may need e.g.:

 

{
  username: encodeURIComponent(username),
  password: encodeURIComponent(password),
  output_mode: "json"
}

 

0 Karma

tscroggins
Influencer

--you may also need to perform other sanity checks on username and password before passing them to encodeURIComponent. Check mdn etc. for examples.

0 Karma
Get Updates on the Splunk Community!

Automatic Discovery Part 1: What is Automatic Discovery in Splunk Observability Cloud ...

If you’ve ever deployed a new database cluster, spun up a caching layer, or added a load balancer, you know it ...

Real-Time Fraud Detection: How Splunk Dashboards Protect Financial Institutions

Financial fraud isn't slowing down. If anything, it's getting more sophisticated. Account takeovers, credit ...

Splunk + ThousandEyes: Correlate frontend, app, and network data to troubleshoot ...

 Are you tired of troubleshooting delays caused by siloed frontend, application, and network data? We've got a ...