Im trying to make requests to a remote Rest (put method) api
var xhReq = new XMLHttpRequest();
xhReq.open("PUT", "http://api-easybib.apigee.com/2.0/rest/cite", true);
xhReq.setRequestHeader('Content-Type', 'application/json');
var jsonString = "{...}";
xhReq.send(JSON.stringify(jsonString));
var serverResponse = xhReq.responseText;
it fails with
No 'Access-Control-Allow-Origin' header
although i succeeded to make call via rest client browser plugins.
What am i missing?