arkadaşlar merhaba ajax ile json veri çekemiyorum

kodum şöyle;


$("#buton").click(function(){

$.getJSON("https://maps.googleapis.com/maps/api/geocode/json?key=Asfsdfsdfsdfsdfsdfsd-c&latlng=37.8433664,29.1388587",function (data){

$.each(data.results,function (key,item){

$("ul").append("
  • " + item.long_name + "
  • ")

    })


    })

    })