javascript - loop data from URL JSON ERROR ! >> net::ERR_BLOCKED_BY_CLIENT

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
Share solution ↓
Additional Information:
Link To Answer People are also looking for solutions of the problem: mysqli::real_connect(): (hy000/2002): connection refused
Didn't find the answer?
Our community is visited by hundreds of web development professionals every day. Ask your question and get a quick answer for free.
Similar questions
Find the answer in similar questions on our website.
Write quick answer
Do you know the answer to this question? Write a quick response to it. With your help, we will make our community stronger.