I am trying to send the request from one localhost port to the another. I am using angularjs on the frontend and node on the backend.
Since it is
For anyone getting this using ServiceStack backend; add "Authorization" to allowed headers in the Cors plugin:
Plugins.Add(new CorsFeature(allowedHeaders: "Content-Type,Authorization"));