Bom até pouco tempo meu código funcionava perfeitamente no google chrome, então do nada começou dar problema de cors, não entendi o motivo e tentei de tudo e não consegui resolver, então fui para o mozila e estranhei pois no firefox funciona perfeitamente, alguém sabe o motivo que estou dando erro de cors? Agradeço pela atenção desde já.
Failed to load https://api.mercadolibre.com/users/113835960/items/search?status=active&access_token=APP_USR-5901258004946867-040922-12bad0a535ebb3a5b7a168a97290eefe-113831160: The 'Access-Control-Allow-Origin' header has a value 'null' that is not equal to the supplied origin. Origin 'null' is therefore not allowed access.
function buscaIDAnuncioML(){
var xhr = new XMLHttpRequest();
xhr.open("GET", "https://api.mercadolibre.com/users/113831160/items/search?status=active&access_token=" + token);
xhr.addEventListener("load", function(){
var resposta = xhr.responseText;
var array = JSON.parse(resposta);
var anuncioID = array.results;
});
xhr.send();
};