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
This enables the generated javascript to do multipart MIME file uploads.
It is the user's responsibility to generate a valid body; e.g.:
var fileObject = new File([blob], 'video.webm', {
type: 'video/webm'
});
var formData = new FormData();
formData.append('video', fileObject);
postVideo(formData, onSuccess, onError);
0 commit comments