I am trying to loop JSON data from the URL but message on console log net::ERR_BLOCKED_BY_CLIENT
<script>
var url = "https://ssl.geoplugin.net/extras/location.gp?lat=14.5958&lon=121.0256&format=json&k=251a6dc5fb78066e";
fetch(url)
.then( (response) => response.text() )
.then( (data) => {
console.log(data);
})
.catch( (error) => console.log("Cannot get Data") );
</script>
Output:
https://www.screencast.com/t/Z8WrJJjh6
https://www.screencast.com/t/vBFp8Uz2Vc6Y