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
I'm getting an err of A header you provided implies functionality that is not implemented. I can't figure out what I might be doing wrong, is there some missing information?
The text was updated successfully, but these errors were encountered:
@pwaller ContentLength will be calculated automatically by the SDK when it can (there is code for this in develop), but note that it is a required field and cannot be omitted by the SDK (whether it's automatically filled or not).
One trick you can use to get around this restriction is to use multipart uploads, which allows you to send an object as multiple arbitrary sized parts (though you must know the size of each individual part). You can see the multipart upload overview documentation for more information on this technique.
Note that a multipart upload has to be at minimum 5mb, so you would have to buffer that much into memory and determine if you can use this technique before actually initiating the request.
I'm getting an
err
ofA header you provided implies functionality that is not implemented
. I can't figure out what I might be doing wrong, is there some missing information?The text was updated successfully, but these errors were encountered: