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 AJAX Basics (retiring) AJAX Concepts AJAX Security Limitations

Is there another Treehouse course you recommend that covers the web proxy method while still using AJAX?

I'm trying to find ways to build a browser application with an API, but the API doesn't support JSONP and returns JSON only.

So I want to try the web proxy method described in the video and I was wondering if anyone can recommend a specific course on Treehouse that covers web proxy while still using AJAX.

2 Answers

Dylan Shine
Dylan Shine
17,565 Points

Hi Fedieson,

From what you're saying, I would suggest you look into Node.js, specifically the Express web application framework. Unfortunately the scope of the Node.js course here on TTH doesn't delve into making AJAX calls let along making web applications outside of the terminal. Hope that helps, Dylan

Thank you Dylan, that points me in the right direction. I'm optimistic that Treehouse will eventually offer courses soon.

Michael Soileau
Michael Soileau
9,431 Points

If you're curious, look up Curl. This is typically how most cross-origin requests are made, for example, to the popular Parse API. Curl is supported in virtually all programming languages, but most have a library built on top of Curl to make managing the request/response cycle easier. Curl has a ton of options that are not exactly intuitive, so libraries abstract away some of the complexity.

Thanks! I'll look into it