gpt4 book ai didi

iphone - 在 Dropbox 上上传图片时出错

转载 作者:行者123 更新时间:2023-12-01 16:50:44 25 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





Dropbox Core API - 1021 error before upload - only in iOS 5 and below [duplicate]

(1 个回答)


8年前关闭。




我正在开发一个 iPhone 应用程序,如果我需要将图像上传到文件夹中。我正在从保存的相册中获取图像并将其保存在文件夹中。我想上传该图像,但出现错误。

这是我的代码

NSMutableArray *array=[[NSMutableArray alloc]init];
NSString *folderName;
if (metadata.isDirectory) {
NSLog(@"Folder '%@' contains:", metadata.path);
for (DBMetadata *file in metadata.contents)
{
[array addObject:file.filename];
NSLog(@"\t%@", file.filename);
}

folderName=[array objectAtIndex:0];
}

NSString *pngImagePath = [[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) lastObject] stringByAppendingPathComponent:[NSString stringWithFormat:@"%@.png",imageName.text]];
[data writeToFile:pngImagePath atomically:YES];

[[self restClient]uploadFile:[NSString stringWithFormat:@"%@.png",imageName.text] toPath:[NSString stringWithFormat:@"/%@",folderName]withParentRev:nil fromPath:pngImagePath];

我得到以下错误
File upload failed with error - Error Domain=NSURLErrorDomain
Code=-1021 "The operation couldn’t be completed. (NSURLErrorDomain
error -1021.)" UserInfo=0x68d0c70 {destinationPath=/sonal/abc.png,
sourcePath=/Users/bcod/Library/Application Support/iPhone
Simulator/5.0/Applications/44555D9C-422E-45FC-B392-F74275B16378/Documents/abc.png}

我也收到以下警告
[WARNING] DropboxSDK: error making request to
/1/files_put/dropbox/apple/app.png

请任何人都可以告诉我为什么会出现此错误

提前致谢

最佳答案

检查目标路径..似乎问题出在服务器无法找到目标文件夹



还要检查图像大小。大文件可能会导致请求耗尽。尝试使用较小的图像

关于iphone - 在 Dropbox 上上传图片时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16098439/

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