Hello people. I am trying to run a block that when a user takes a pic on the camera, the pic gets uploaded to my own server, where I can run some logic over it. Why not Cloudinary? Well, I am greedy and I am tying to improve performance instead of sending it to Cloudinary, get a URL of the pic, and only then call my server to run the logic At least I’d like to give it a chance before giving up…
I saw some very old posts attempting to do similar things, but they are old and some of the links and explanations seem invalid, so I am trying to ask again.
So, my working curl request (assuming that I get from the camera an actual file) allowing me to upload images and files, looks like:
curl -X POST -F ‘password={password}’ -F ‘image=@{my_image_file}’ “{http_address}”
I have attempted several ways on Thunkable and failed so far. Here is a recent attempt:
Does anyone have any advice or good experience in something like this?
Referencing here some of the “leaders” that I found on old related topics:
@tatiang , @muneer , @jared .
Many thanks in advance.