3

您好,我在我的应用程序中使用 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];
4

1 回答 1

9

设置 Dropbox 会话时,您必须设置正确的根:

DBSession* dbSession =
    [[DBSession alloc]
      initWithAppKey:@"APP_KEY"
      appSecret:@"APP_SECRET"
      root:kDBRootDropbox]; // either kDBRootAppFolder or kDBRootDropbox
    [DBSession setSharedSession:dbSession];

在您的情况下,因为您使用的是完整的 Dropbox,您需要将 root 设置为 KDBRootDropbox。

于 2012-07-31T13:40:51.100 回答