七牛上传图片过程中,会自动终止?

新手上路,请多包涵

之前上传过程中是没有任何问题的。今天突然出现这个问题:用七牛上传图片时,没有成功,确调用上传完毕的方法。如图:图片描述

这是我的方法实现:`+ (void)uploadImageToQNFilePath:(NSString )filePath AndToken:(NSString )token upSuccess:(void (^)(NSString ))success progressPercent:(void (^)(float, BOOL ))progresspercent iscancel:(void (^)(BOOL))CancelResult
{

_cancel = NO;
QNUploadManager *upManager = [[QNUploadManager alloc] init];
QNUploadOption *uploadOption = [[QNUploadOption alloc] initWithMime:nil progressHandler:^(NSString *key, float percent) {
    if (progresspercent) {
        progresspercent(percent,&_cancel);
    }
    

// NSMutableDictionary *info = [NSMutableDictionary dictionary];
// info[YBSPicUploadProgress] = @(percent);

    
}params:nil
 checkCrc:NO
 cancellationSignal:^BOOL{
     !_cancel ?: CancelResult(YES);
     return _cancel;
 }];

[upManager putFile:filePath key:nil token:token complete:^(QNResponseInfo *info, NSString *key, NSDictionary *resp) {
    NSLog(@"info ===== %@", filePath);
    NSLog(@"key ===== %@", key);
    NSLog(@"resp ===== %@", resp);
    if (success) {
        success(resp[@"key"]);
    }
}
option:uploadOption];

}`
完全没变啊...求助

阅读 2.2k
1 个回答

找到问题所在了....原来是后台给我的token多了个n换行字符...。希望大家引以为鉴。我是LZ

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题
logo
七牛云问答
子站问答
访问
宣传栏