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 trialRajiv 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 :(