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 trialfrankgenova
Python Web Development Techdegree Student 15,616 PointsGetting a 404 when calling https://teamtreehouse.com/username.json
I've tried using JavaScript as outlined in the tutorial
const https = require('https');
function getProfile() {
const request = https.get(
"https://teamtreehouse.com/frankgenova.json",
(response) => {
console.dir(response.statusCode);
}
);
}
getProfile();
and with Python (as a sanity check)
import requests
r = requests.get('https://teamtreehouse.com/frankgenova.json')
print(r.status_code)
both approaches return a 404.
2 Answers
Steven Parker
231,236 PointsYour profile is currently hidden, based on your profile settings. Go to you privacy settings page, and check this box:
ā Allow everyone to see your profile
That will allow the server to handle the request.
Laura Dangler
3,301 Pointsmy name dont appear either i tried + and %20 for the white space and nothing.. https.get('https://teamtreehouse.com/Laura+Dangler.json'
Steven Parker
231,236 PointsThere's no white space in your user name. Use: https://teamtreehouse.com/lauradangler.json
.