[解决方法]:用Postman生成request请求."error":"Unauthorized","message":"Failed to decode basic authentication

使用Postman生成request代码。
第一次出现错误: requests.exceptions.ConnectionError: HTTPConnectionPool(host=‘auth-api.service.use1.consul’, port=8080): Max retries exceeded with url: /auth-api/admin/user/371726 (Caused by NewConnectionError(’: Failed to establish a new connection: [Errno 11001] getaddrinfo failed’,))
原因:The URL of endpoint has been changed

第二次出现错误:“error”:“Unauthorized”,“message”:"Failed to decode basic authentication token"
原因:I send request by Postman first. click the button “Code”. Run the code what I get from postman and return error message shown above. The reason is key"Authorization" in the headers. there are two different values actually. I delete the first one and keep the value which include my username.

Just for remind

你可能感兴趣的:(解决方法)