- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Using Bearer Authentication with addon_builder helper.send_http_request
twadeus
Loves-to-Learn
10-04-2024
07:21 AM
I am looking for an example for using Bearer Authentication within python using helper.send_http_request in the Splunk addon builder. All the example I have found so far have "headers=None".
Python helper functions
https://docs.splunk.com/Documentation/AddonBuilder/4.3.0/UserGuide/PythonHelperFunctions
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
marnall
Motivator
10-09-2024
01:03 PM
Try adding it as you would a header dictionary:
headers = {"Authorization": "Bearer TOKENGOESHERE"}
