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!

SOC4Kafka - New Kafka Connector Powered by OpenTelemetry

The new SOC4Kafka connector, built on OpenTelemetry, enables the collection of Kafka messages and forwards ...

Your Voice Matters! Help Us Shape the New Splunk Lantern Experience

Splunk Lantern is a Splunk customer success center that provides advice from Splunk experts on valuable data ...

Building Momentum: Splunk Developer Program at .conf25

At Splunk, developers are at the heart of innovation. That’s why this year at .conf25, we officially launched ...