gpt4 book ai didi

iphone - Dropbox 图片上传结果认证错误

转载 作者:行者123 更新时间:2023-11-28 22:48:48 25 4
gpt4 key购买 nike

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

最佳答案

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

<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleURLSchemes</key>
<array>
<string>db-dz0h38qnvcwrzhk</string>
</array>
</dict>
</array>

关于iphone - Dropbox 图片上传结果认证错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12491908/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com