I'm hitting a major road block while consuming services POST
from this client who has no Access-Control-Allow-Origin
at all.
I've tried following solutions or are you saying it's not possible at all?
{ [Error: socket hang up] code: 'ECONNRESET' }
Please advise.
So, why just not add this header? Just one line of code :)
You may run your own server which will forward requests to that service (nginx can easily do that, take a peek).
In a nutshell:
frontend app -> your proxy with CORS headers (like nginx) -> api service