Is it possible to write REST request to upload multiple file? I searched Stack Overflow but I couldn't find anything?
Asked
Active
Viewed 258 times
1 Answers
0
Maybe this answer can guide you in the right direction:
There are several options:
- Encode all the files base64, and post them to your REST endpoint
- Post the files in a multipart/form-data request. See jooby file upload
I created a small demo application implementing both.

AZWN
- 158
- 12