I’ve encountered a strange behavior with the Postman Extension for VSCode.
I’m trying to POST some local files over a multipart/form-data
request, I’ve added 3 files and then I print their name in the console to ensure they all pass through.
If I add one file only nothing is printed back, if I add more files only the first one gets through to my API endpoint, all the others defaulting to undefined
.
I’ve tried the same request with the Thunder Client Extension in VSCode and all files pass through as expected.
Do you have any idea why this is happening?
Additional info about my environment:
I’m using Hono to export a Cloudflare Worker.
Node: v18.10.0
Postman VSCode Extension: v0.14.3
(latest)