I have a REST end of my API at the following address : http://test.jll.aplikacje-dedykowane.pl/rest/warehouse/all . Now I'm trying to return the JSON data prepared at this page but I'm constantly getting null (with 200 OK) as a result.
var getSearchResults = function(){
var url = '',
data = '';
url = 'http://test.jll.aplikacje-dedykowane.pl/rest/warehouse/all';
$.getJSON(url, function(data){
console.log(data);
});
}