-
Hi, The documentation says "No authentication required" for AKHQ, but I'm consistently getting a "Unauthorized" message when trying to retrieve data through the API. Is there a way to authenticate to AKHQ using the API? $> curl -X GET "http://localhost:8080/api/cluster" -H "accept: application/json"
{"message":"Unauthorized"} |
Beta Was this translation helpful? Give feedback.
Answered by
PandeoF1
Mar 20, 2024
Replies: 1 comment 4 replies
-
Using basic auth in curl works. Is there documentation about that? $> curl -X GET "http://localhost:8080/api/cluster" -H "accept: application/json" -u xxx:xxx
[{"id":"xxx","registry":false}] |
Beta Was this translation helpful? Give feedback.
4 replies
Answer selected by
PandeoF1
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Using basic auth in curl works. Is there documentation about that?