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 trialmathisvaneetvelde
9,366 PointsNSURL
Hi everyone, i am stuck on this exercise.
This is what i have to do: To access information about a course we can use a URL like: https://api.teamtreehouse.com/course/COURSE_ID. Given the variable courseID, create an absolute URL, named courseURL, to retrieve information about a user's progress on a certain course. It should have a path that's relative to the treehouseBaseURL.
I hope you guys can help me with my problem. Greetings Mathis
import Foundation
let courseID = 25
var treehouseBaseURL = NSURL(string: "https://api.teamtreehouse.com/")
var courseURL = NSURL(courseID, relativeToURL: treehouseBaseURL)
1 Answer
Sam Stanfield
8,809 Pointslet courseURL = NSURL(string: "course/(courseID)", relativeToURL: treehouseBaseURL)
Sam Stanfield
8,809 PointsSam Stanfield
8,809 PointsFor some reason the backward slash won't appear when I post, but there should be a backward slash before (courseID)
mathisvaneetvelde
9,366 Pointsmathisvaneetvelde
9,366 PointsI did what you said but i still have an error: You need to convert the courseID variable to a string and use it when creating courseURL.
Sam Stanfield
8,809 PointsSam Stanfield
8,809 Pointsyou need a backward slash \ before the (courseID)
mathisvaneetvelde
9,366 Pointsmathisvaneetvelde
9,366 PointsI know, it stil sais the same : You need to convert the courseID variable to a string and use it when creating courseURL.
Sam Stanfield
8,809 PointsSam Stanfield
8,809 PointsI got that error too when I was first trying to solve it. If you use the same code you had before and just make the change I suggested it should work. \ (courseID) should be all you need to convert it to a string. Do you have both the / and a \