You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi I am using react.js and was wanting to use axios to make http request to the splunk rest api. I can curl my own local splunk with curl -k https://localhost:8089/services/auth/login --data-urlencode username=admin --data-urlencode password=password
But when I try to do
I get a 404 error.
I am using free splunk when I am trying to connect.
Is the 404 error because of something to do with CORS?
I am also interested in maybe using the splunk javascript sdk but when I read about the related issue(#61) I have no idea where to start and how to use browserify.
Any help is much appreciated thanks!
The text was updated successfully, but these errors were encountered:
I can get a response back from the https call in postman when I turn off ssl. When ssl is turned on I can not get access to it. I am using free splunk on my laptop.
This issue doesn't seem related to the SDK according to you previous comment, please re-open if you find that the issue is related to the SDK specifically.
Hi I am using react.js and was wanting to use axios to make http request to the splunk rest api. I can curl my own local splunk with
curl -k https://localhost:8089/services/auth/login --data-urlencode username=admin --data-urlencode password=password
But when I try to do
`axios.post({
url: 'https://localhost:8089/services/auth/login',
data: {
username: 'username',
password: 'password'
}
})
I get a 404 error.
I am using free splunk when I am trying to connect.
Is the 404 error because of something to do with CORS?
I am also interested in maybe using the splunk javascript sdk but when I read about the related issue(#61) I have no idea where to start and how to use browserify.
Any help is much appreciated thanks!
The text was updated successfully, but these errors were encountered: