I found a problem. I parsed json incorrectly.
$.ajax({ url:"https://s3.amazonaws.com/myBucket/myfile.json", type:"GET", success:function(data) { console.log(data.property) } })
Instead it works:
$.ajax({ url:"https://s3.amazonaws.com/myBucket/myfile.json", type:"GET", success:function(data) { var obj = jQuery.parseJSON(data); if(typeof obj =='object'){ console.log(obj.property) } } })
Tropicalista
source share