I am trying to post blob. This is definitely a drop. However, this does not work in response. I get a red screen that says: "PUT must have a request body." Well, I put blob in the request body.
createAttachment: function(url, blob) { var settings = { method: "PUT", headers: { 'Accept': 'image/jpeg', 'Content-Type': 'image/jpeg', 'If-Match': '*', }, body: blob }; return fetch(url, settings) }
source share