TUSKit iOS 8:错误:连接请求新的正文流,目前不支持

时间:2015-04-07 15:33:54

标签: ios objective-c xcode6.1.1

TUSKit使用iOStus.io使用API。设置tus.io并为TusKIT

配置示例项目后

<TUSResumableUpload.m:(115)> Finished upload to PATH/videos/uploads/15/ for fingerprint assets-library://asset/asset.mp4?id=30C691FA-5866-4498-82CB-E95FB600BD74&ext=mp4 2015-04-07 01:46:36.397 TUSKit[207:8879] url: PATH/videos/uploads/15/ 2015-04-07 01:46:36.410 TUSKit[207:8879] <TUSResumableUpload.m:(157)> ERROR: connection requested new body stream, which is currently not supported

该摘录

- (NSInputStream *)connection:(NSURLConnection *)connection needNewBodyStream:(NSURLRequest *)request { TUSLog(@"ERROR: connection requested new body stream, which is currently not supported"); return nil; }

TUSResumableUpload.m

中的

是我们收到错误的地方,我不知道为什么

服务器上的上传已启动,但为空。

有关如何解决此问题的任何建议吗?

Xcode 6.1.1

1 个答案:

答案 0 :(得分:0)

解决!

API中存在重定向错误,导致TUSKit无法完成上传。

然后我们不得不改变接收二进制数据的方式,以便开始在我们的文件中获取数据。