What am I missing in parsing this JSON response from the Forecast API?

Before using it in my Weather app, I wanted to make sure I can get the data working in a response from Forecast.io. I extracted the call to a pen by itself to test it out (nb, personal key exposed):
https://codepen.io/AbdiViklas/pen/zBKONg?editors=1011
What am I missing, why isn’t that putting anything in the console?
The response I get back from Forecast starts with {"latitude":35,"longitude":-78,"timezone":"America/New_York","offset":-4,"currently":{"time":1466176532,"summary":"Clear","icon":"clear-day",…etc.

Try adding this after your query :

?callback=?

for more info on this, read about jsonp

1 Like

I don’t see a single console.log() call. Everything seems to be working.