I always had an "Error writing request body to server" when I uploading my video to Youtube.
It seems like something to do with the firewalls....
Anyway, it was solved by adding
call service.setChunkedMediaUpload(MediaService.NO_CHUNKED_MEDIA_REQUEST)
which is uploading the video as one big file instead of in chunks.
However, I'm having a new problem now, when I upload a large video(83M), It complains about the JAVA Heap Space (Java exception thrown: java.lang.OutOfMemoryError: Java heap space.)
I don't want to increase the heap space cause you never know how big the video will be, So its a Catch-22 situation to me...
I prefer to upload the youtube video by chunk but don't know where to start with.....
how can I solve this error???? "Error writing request body to server"