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 Node.js Basics Building a Command Line Application Requesting data with https

Getting 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
Steven Parker
229,644 Points

Your profile is currently hidden, based on your profile settings. Go to you privacy settings page, and check this box:

ā€ƒ:white_check_mark: Allow everyone to see your profile

That will allow the server to handle the request.

my name dont appear either i tried + and %20 for the white space and nothing.. https.get('https://teamtreehouse.com/Laura+Dangler.json'

Steven Parker
Steven Parker
229,644 Points

There's no white space in your user name. Use: https://teamtreehouse.com/lauradangler.json.