不支持的媒体类型

不支持的媒体类型

我在iOS swift应用程序中使用DropboxSDK,当我尝试下载缩略图时,出现(415)不支持的媒体类型错误:

2015-10-24 20:10:23.732 PhotondRoll [55084:2520699] [警告] DropboxSDK:对/ 1 / thumbnails / dropbox / Pictures / 2015/0123的请求出错。 Pache / 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)
}


你可以帮帮我吗?

最佳答案

我能够解决这个问题,将loadThumbnail调用移到了dispatch_async块中。

09-19 19:15