You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
final file =File(fileInfo.filePath + fileInfo.fileName); // make sure the output will be: /data/..../abc.pngawait _uploader.enqueue(
MultipartFormDataUpload(
url: url,
files: [
FileItem(path: file.path, field:'file')
],
headers: {
Constant.authorization:'Bearer ${token.token}',
Constant.accept:'application/json',
},
data: {
Constant.fileSizeDataForm: (await file.length()).toString()
}
)
)
-> Result: Upload fail with error log:
E/UploadWorker(26371): exception encounteredprotocol
E/UploadWorker(26371): java.net.ProtocolException: unexpected end of stream
E/UploadWorker(26371): at okhttp3.internal.connection.Exchange$RequestBodySink.close(Exchange.kt:239)
E/UploadWorker(26371): at okio.RealBufferedSink.close(RealBufferedSink.kt:268)
E/UploadWorker(26371): at okhttp3.internal.http.CallServerInterceptor.intercept(CallServerInterceptor.kt:60)
E/UploadWorker(26371): at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109)
E/UploadWorker(26371): at okhttp3.internal.connection.ConnectInterceptor.intercept(ConnectInterceptor.kt:34)
E/UploadWorker(26371): at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109)
E/UploadWorker(26371): at okhttp3.internal.cache.CacheInterceptor.intercept(CacheInterceptor.kt:95)
E/UploadWorker(26371): at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109)
E/UploadWorker(26371): at okhttp3.internal.http.BridgeInterceptor.intercept(BridgeInterceptor.kt:83)
E/UploadWorker(26371): at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109)
E/UploadWorker(26371): at okhttp3.internal.http.RetryAndFollowUpInterceptor.intercept(RetryAndFollowUpInterceptor.kt:76)
E/UploadWorker(26371): at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109)
E/UploadWorker(26371): at okhttp3.internal.connection.RealCall.getResponseWithInterceptorChain$okhttp(RealCall.kt:201)
E/UploadWorker(26371): at okhttp3.internal.connection.RealCall.execute(RealCall.kt:154)
E/UploadWorker(26371): at com.bluechilli.flutteruploader.UploadWorker.doWorkInternal(UploadWorker.java:253)
E/UploadWorker(26371): at com.bluechilli.flutteruploader.UploadWorker.lambda$null$0$UploadWorker(UploadWorker.java:98)
E/UploadWorker(26371): at com.bluechilli.flutteruploader.-$$Lambda$UploadWorker$Ho59XPh0Nv1qDklSXHWeL_QPIl0.run(Unknown Source:4)
E/UploadWorker(26371): at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162)
E/UploadWorker(26371): at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636)
E/UploadWorker(26371): at java.lang.Thread.run(Thread.java:764)
I have tried the solution from #2738, but the same error.
Does anyone have an idea for this?
The text was updated successfully, but these errors were encountered:
I tried to upgrade the latest version from
1.2.1
to3.0.0-beta.1
same as below:-> Result: Upload successfully
-> Result: Upload fail with error log:
I have tried the solution from #2738, but the same error.
Does anyone have an idea for this?
The text was updated successfully, but these errors were encountered: