@dharrigan I’m posting the data like so:
(reg-event-fx
:upload-shot-video-server
(fn [coeffects [_ blob]]
(let [body (js/FormData.)]
(.append body "video" blob "video.mov")
(.append body "key" "VAL")
{:http-xhrio {:method :post
:uri (str "<http://d18a6571c2e5.ngrok.io>" "/api/upload-shot-video")
:body body
:on-success [:upload-success]
:on-failure [:upload-error]
:format (json-request-format)
:response-format (raw-response-format) #_(edn/edn-response-format)}}))
)
yet the multipart params aren’t showing.
and I’m sending a blob in the multipart data