I can successfully upload single files to Xano using @NoCode ProCode's technique of "get"ting item [0] from a file picker file list.
I'm trying the same thing with multiple image files, but no matter how I format the data going to Xano I get some kind of error message, most often "Value is not properly formed."
The Xano API endpoint is a POST request with a single file resource param called image_files which is set to a list (not single).
In Toddle, I use a file picker component (really just a file input field) which returns a filelist just fine, and I extract the event/target/files from that, which gives me an array of files. The API call wraps the file list in an object with the name matching what Xano is expecting, is not proxied, and is multipart/form-data, with no authentication.
I think the answer is somewhere in how I prep and wrap the data from the file input field, but I'm stuck.... 😢
Any help / pointers much appreciated!