How can I increase the body limit? I need to send base64 image to a function.
The best thing to do is use Appwrite storage instead of sending an image directly to a function
Yeah, but I don't want to store anywhere. I need to pass it to another 3rd party API
Download the file from storage in the function
it's what i'm doing now, but it's just a workaround. it's less than ideal to upload, run function and then delete
How about executing the function automatically on upload?
I still need to store the file unnecessarily then, don't I?
it is necessary because functions doesn't support large file inputs
Recommended threads
- Function domain not available
Hello, even tho in docs you clearly describe that every function has its domain, I can not see it anywhere in any of my projects. How do I reveal the url of th...
- Inquiry: How to Reduce Cold Start Durati...
Hey! I was using Python for the function runtime, but after reading that Go has the fastest runtime, I switched my code over to Go. However, I'm still seeing co...
- After a GET request is passed to functio...
Create execution in the console can normally retrieve the get parameters。WHy?