我在我的iOS swift应用程序中使用DropboxSDK,当我尝试下载缩略图时,我收到(415)不支持的媒体类型错误:
2015-10-24 20:10:23.732 PhotondRoll [55084:2520699] [警告] DropboxSDK:向/ 1 / thumbnails / dropbox / Pictures / 2015/0123发出错误请求。 Noche de cine con Pablo / 20150123_211742443_iOS.jpg - (415)不支持的媒体类型
这是我用来下载缩略图的行。其余的代码是在Dropbox入门指南之后创建的。
if let dirs : [String] = NSSearchPathForDirectoriesInDomains(NSSearchPathDirectory.DocumentDirectory, NSSearchPathDomainMask.AllDomainsMask, true) {
let dir = dirs[0] //documents directory
dropboxRestClient.loadThumbnail(metadata.path, ofSize: "s", intoPath: dir)
}
你能帮帮我吗?
答案 0 :(得分:0)
我能够在dispatch_async块中移动loadThumbnail调用来解决这个问题。