All Apps and Add-ons

Splunk App for Okta: Does this only run on Linux, or is there a Windows compatible version?

scarroll_splunk
Splunk Employee
Splunk Employee
0 Karma

aalanisr26
Path Finder

It should work on windows as well, the call is made through the pyton script.
One thing you need to check is if there is a proxy setting on your infrastructure. In our case we needed to change the python script for that purpose:

conn = httplib.HTTPSConnection("myproxyservername",8080,timeout=3600)
conn.set_tunnel(restUri,443)

params = urllib.urlencode({"startDate": lastTime['splunk'],"limit":settings['limit']})
conn.request("GET",settings['endpoint'] + '?' + params,"",headers)
response = conn.getresponse()

0 Karma

bwindham
Path Finder

We are running our Splunk App for Okta on Windows 2008 R2 using Splunk 6.1 right now.

0 Karma

scarroll_splunk
Splunk Employee
Splunk Employee

thanks for the responses very helpful.

0 Karma
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.
Get Updates on the Splunk Community!

Tech Talk Recap | Mastering Threat Hunting

Mastering Threat HuntingDive into the world of threat hunting, exploring the key differences between ...

Observability for AI Applications: Troubleshooting Latency

If you’re working with proprietary company data, you’re probably going to have a locally hosted LLM or many ...

Splunk AI Assistant for SPL vs. ChatGPT: Which One is Better?

In the age of AI, every tool promises to make our lives easier. From summarizing content to writing code, ...