How to send multiple files in postman ReSTful web service?

前端 未结 5 1941
感动是毒
感动是毒 2021-01-01 09:00

I am using ReSTful webservice. I am uploading multiple photos with one function (PHP).

I have used $num_files = count($_FILES[\'myfile\'][\'name\']) to

5条回答
  •  囚心锁ツ
    2021-01-01 09:26

    You can simple add multiple lines with same key and postman converts them to array. No need to add [] as suffix to key.

    Request

    Response

    If you have an array objects that need to passed then follow below pattern

提交回复
热议问题