0

Is it possible to write REST request to upload multiple file? I searched Stack Overflow but I couldn't find anything?

1 Answers1

0

Maybe this answer can guide you in the right direction:

There are several options:

  1. Encode all the files base64, and post them to your REST endpoint
  2. Post the files in a multipart/form-data request. See jooby file upload

I created a small demo application implementing both.

AZWN
  • 158
  • 12