0

我正在开发一个将图像上传到 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 发出请求时出错 - 身份验证失败 我该如何进行身份验证?

4

1 回答 1

2

在 info.plist 的第一个标签下方添加以下代码

<key>CFBundleURLTypes</key>
    <array>
        <dict>
            <key>CFBundleURLSchemes</key>
            <array>
                <string>db-dz0h38qnvcwrzhk</string>
            </array>
        </dict>
    </array>
于 2012-09-20T08:09:45.687 回答