Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript Asynchronous Programming with JavaScript Asynchronous JavaScript with Callbacks Async Programming and Callback Functions

The default work space does not work when calling getJSON(astrosUrl)

The default work space for the Asynchronous Programming with JavaScript does not work when calling getJSON(astrosUrl). I get this error in the console: callbacks.js:16 Mixed Content: The page at 'https://port-80-o1muux6ny0.ecs-production.treehouse-app.net/' was loaded over HTTPS, but requested an insecure XMLHttpRequest endpoint 'http://api.open-notify.org/astros.json'. This request has been blocked; the content must be served over HTTPS.

2 Answers

Steven Parker
Steven Parker
229,745 Points

That's caused by a setting in your browser that causes it to reject mixed security mode content. Just go to your browser settings and change it to allow insecure content. I use Chrome, and you can set that value on a per-website basis so I just allow that with Treehouse as the default.

jobbol
seal-mask
.a{fill-rule:evenodd;}techdegree
jobbol
Full Stack JavaScript Techdegree Student 16,610 Points

For Chrome, Edge, Brave close out all windows and reopen with the flag -allow-running-insecure-content. This allows running mixed HTTP / HTTPS without erroring out. Consider this a temp fix.

https://stackoverflow.com/questions/18321032/how-to-get-chrome-to-allow-mixed-content

Steven Parker
Steven Parker
229,745 Points

Note that adjusting in in the settings as I described above is a permanent fix.