您好,我在我的应用程序中使用 Dropbox API。我想从我的 Dropbox 帐户下载图像并将它们存储在模拟器或设备目录中。我已经使用 Full DropBox Access 在 Dropbox 中创建了应用程序。但它给了我这个错误:
[警告] DropboxSDK:向 /1/files/sandbox/Photos 发出请求时出错 - 应用程序文件夹(沙盒)访问尝试失败,因为此应用程序未配置为具有应用程序文件夹。您的访问类型应该改为“保管箱”吗?
这是我的代码
restClient = [[DBRestClient alloc] initWithSession:[DBSession sharedSession]];
restClient.delegate = self;
NSString *fileName = [NSString stringWithFormat:@"/avatar.jpg"];
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,
NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString* path2 = [documentsDirectory stringByAppendingString:
[NSString stringWithFormat:@"%@", fileName]];
[restClient loadFile:fileName intoPath:path2];