Multipart/form-data

is there a way to send multipart/form-data through the post block

what’s the post block? you mean an http request? You might be able to json the list before sending.

Also, what kind of multipart/form-data are you sending?

images. i want to without base64

I have no Idea how you would send images without base64. You can’t just send a JSON-ified costume, either

thats the question

if you’re using http you can’t really send images without converting them to base64 or something similar, because after all http stands for HyperText Transfer Protocol

offtopic

this is my first post of 2026!

multipart/form-data is a form used in posting

i see, i should’ve googled it first
i’ll try to come up with something

You may START from. It seems to form a valid multipart request with two fields (but no binary data)

You must to figure out how to declare proper content type, encoding and provide a binary data.

:snap: has no direct binary data API. In some context list of bytes may be converted to binary buffer. from base64 @MQTT can form a binary buffer
untitled script pic (14)

Can this be added to the http plugin

@bh would it be possible to edit the http library to allow for this.