我在iOS项目中尝试使用SwiftyDropbox,当我使用教程中的代码时......
if let client = Dropbox.authorizedClient {
// Get the current user's account info
client.users.getCurrentAccount().response { response, error in
print(response)
if let account = response {
self.accountStatus.text = "\(account.email)"
} else {
print(error!)
}
}
}
...我打印response
它返回nil,我在Xcode控制台中收到以下错误:
错误输入:调用API函数“users / get_current_account”时出错:请求正文:无法将输入解码为JSON
我正在使用CocoaPod的 2.0.3 版本。
知道我为什么会收到此错误?
答案 0 :(得分:0)
这是我们正在处理的2.0.3版本的已知问题。
与此同时,你现在可以通过降级到2.0.2来解决这个问题。