When I try to perform a simple search in the Deezer API (Public Search API without Authentication Key) I get the following error message as a return:
XMLHttpRequest cannot load http://api.deezer.com/search?q=Bang. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://localhost' is therefore not allowed access.
The code used to perform the search:
$.getJSON(
"http://api.deezer.com/search?q=Bang",
function(dados) {
console.log(dados);
}
);