I am having problems authenticating with Kinetica's endpoint using the username and password for the REST endpoint

Viewed 33

Passing in username and password in the headers does not appear to work. Neither does wrapping it in json. I am getting a 500 not authorized error.

1 Answers

To authenticate properly, you must send a BasicAuth request. Here is an example for python:

requests.post('http://127.0.0.1:8888/show/table', auth=('user', 'pass'))

Kinetica Rest API documentation

Related