i'm using the Google-api-python-client to upload some emails to a google groups. the upload works fine until i got this error while uploading... .
File "/Users/xxxxx/Downloads/pythonClientLibrary/google-api-python-client-1.8.3/googleapiclient/discovery.py", line 861, in method
raise MediaUploadSizeError("Media larger than: %s" % maxSize) googleapiclient.errors.MediaUploadSizeError: Media larger than: 26214400
is there any way to change/increase the value of the 'maxSize' variable to be able to upload mails with size larger than 26mb ?
apparently 25MB is the max size of a message, that is allowed to be transferred using the Groups Migration API
so in my code, i checked if the msg size is > 25mb then ignore this msg.