ring

zendevil 2021-01-24T11:57:08.010200Z

@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)}}))
 )

zendevil 2021-01-24T11:59:55.010500Z

yet the multipart params aren’t showing.

zendevil 2021-01-24T12:00:16.010800Z

and I’m sending a blob in the multipart data