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 trialted maker
486 Pointskeep getting 301 status
keep getting 301 status
var http = require("http");
var request = http.get("http://teamtreehouse.com/chalkers.json", function(response){
var responseBody = "";
response.on("data", function(dataChunk) {
});
response.on("", function(){
console.log(responseBody);
});
});
request.on("error", function(error){
console.error(error.message);
});
4 Answers
Veronica Rivera
32,599 PointsYou are using http. Treehouse stopped using http for security reasons a while ago. so change http to https and it should now work.
var http = require("https"); //Change to https here
//Below change to https.get and in your url use https instead of http
var request = https.get("https://teamtreehouse.com/chalkers.json", function(response){
var responseBody = "";
response.on("data", function(dataChunk) {
});
response.on("", function(){
console.log(responseBody);
});
});
request.on("error", function(error){
console.error(error.message);
});
ted maker
486 Pointsi have followed the directions line by line still does not work. very unhappy about the lack of direction. will be asking for money back and will post to yelp
ted maker
486 Pointsafter copying line by line your code does not work, still getting status 301?????
ted maker
486 Pointscopy your code. Does Not Work.