I'm passing a url and some data via angular post ... But the following warning appear on the chrome console:
Cross source requests are only supported for protocol schemes: http, data, chrome, chrome-extension, https, chrome-extension-resource.
Follow me code from the angle:
$http.post("localhost:8765/api/v1/users/oauth.json?token="+t1+"&redirect_url=localhost:8765/api/v1/users", data).success(function(responde){
console.log(responde);
});
What does this warning mean?