current docs say that you authenticate like:
var token = "xxxx"
var client = UnsplashClient { request -> [String: String] in
return [ "Authorization": "Bearer \(token)"]
}
this should be
var token = "xxxx"
var client = UnsplashClient { request -> [String: String] in
return [ "Authorization": "Client-ID \(token)"]
}
not sure when this changed, but the using the Bearer format fails auth