我正在开发一个将图像上传到 Dropbox 的 iphone 应用程序。我使用以下代码上传图片。
NSData *datobj = UIImagePNGRepresentation(pic.image);
NSString *stringConvertion = [[NSString alloc] initWithData:datobj encoding:NSUTF8StringEncoding];
NSString *filename = stringConvertion;
NSString *tmpPngFile = [NSTemporaryDirectory() stringByAppendingPathComponent:@"Temp.png"];
[UIImagePNGRepresentation(pic.image) writeToFile:tmpPngFile atomically:NO];
NSString *destDir = @"/";
[[self restClient] uploadFile:filename toPath:destDir
withParentRev:nil fromPath:tmpPngFile];
但我收到如下错误,向 /1/files_put/dropbox 发出请求时出错 - 身份验证失败 我该如何进行身份验证?