Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
传入username和password传入标题似乎不起作用。也不用 json 包装它。我收到 500 未授权错误。
username
password
要正确进行身份验证,您必须发送 BasicAuth 请求。这是python的一个例子:
requests.post('http://127.0.0.1:8888/show/table', auth=('user', 'pass'))
Kinetica 休息 API 文档