Hi,
I have a python service API that connects to an ES instance to query an index and return the query result.
I was previously using ES on the same local machine and everything was working great.
Due to disk space and memory issues I had to move the ES instance to AWS ES.
Now when I call my service API, I am getting the following error:
elasticsearch.exceptions.AuthorizationException: AuthorizationException(403, '{"message":"\'ABcde#FgHijklMNopQrs\' not a valid key=value pair (missing equal-sign) in Authorization header: \'Basic ABcde#FgHijklMNopQrs\'."}')
The request that is causing this error is as follows:
curl -XPOST https://<aws-es-instance>:443/my_index/_search
Any solutions for this error?