I am trying to access a web service but getting cross domain access-control-allow-origin error
$.getJSON("https://beevou.net/oauth/token?grant_type=password&username="+user+
"&password="+pass+"&client_id=NTEzZGU5MThlNDQ0YWM0&client_secret=45d1002085db5dca4dbdbc5f83731 d19662cb265",
function(data) {
console.log(JSON.stringify(data));
});
This is the url. Cant change anything at web service side. Let me know some solution to get rid of this problem
thanks in advance