Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Rajiv Barton
12,051 PointsResponse nil
I have tried all options from other users who asked questions regarding this video and no matter what Im still getting a nil response.
let baseURL = NSURL(string: "https://api.forecast.io/forecast/\(apiKey)/")
let forecastURL = NSURL(string: "39.968612,-82.993032", relativeToURL: baseURL)
let sharedSession = NSURLSession.sharedSession()
let downloadTask: NSURLSessionDownloadTask = sharedSession.downloadTaskWithURL(forecastURL!, completionHandler: { (location: NSURL!, response: NSURLResponse!, error: NSError!) -> Void in
println(response)
})
downloadTask.resume()
1 Answer

Michael Daw
6,440 PointsI've copied your code and it seems to be working for me. Is if possible your api key is not correct?

Rajiv Barton
12,051 PointsIt seems to have worked for me today as well! Thanks for the quick reply. Maybe Xcode just needed reset? who knows.
Rajiv Barton
12,051 PointsRajiv Barton
12,051 PointsI should also note Ive tried unwrapping baseURL in forecastURL which still resulted in a nil response :(