我正在尝试使用 Dropbox 中的图像填充我的收藏视图。
我想使用以下代码为我的网格视图(集合视图)提供缩略图。
DropboxClientsManager.authorizedClient?.files.getThumbnail(path: filename).response(completionHandler: { (
response, error) in
print(response)
print(error)
})
我收到以下错误:
Optional([request-id e70dba3b7ee8f0b9bf6b0aa4b19325f0] API route error - {
".tag" = path;
path = {
".tag" = "not_found";
};
})
但是,当我尝试使用以下方法获取缩略图时,我得到错误。我不知道应该返回哪个 url 到这个函数:
DropboxClientsManager.authorizedClient?.files.getThumbnail(path: filename, format: .png, size: .w32h32, overwrite: true, destination: { (url, res) -> URL in
print(url)
print(res)
return url
})
更新:我们不能在 IOS 中获取 DROPBOX 图像的缩略图 URL 吗?
有没有人有解决方案?
有什么建议么??