When I call my AWS API Gateway from a JavaScript client I get a 404 not found error because the SDK invokes the wrong endpoint:
Instead of
It was fine yesterday. Someone can explain the cause?
UPDATE!
In axios.standalone.js a Microsoft.XMLHTTP ActiveX object is created to send the request. The data parameter has a url member set to "https:abc123.execute-api.us-east-1.amazonaws.com/dev/status". Note there is no slash slash at the beginning. The base URL of the JavaScript client is inserted into the request URL. Please help!