How to post multipart request in Apigee

We want to post images as multipart(multipart/form-data) request.Do we have a working sample ?

Question similar to below.

https://community.apigee.com/questions/13135/how-do-i-send-multipart-data-to-my-request.html

-Vinay

Solved Solved
2 2 2,423
1 ACCEPTED SOLUTION

Not applicable

I'd recommend Node.js along with multer or busboy to post multipart. I've implemented this with SalesForce and Multer and it worked like a charm. What I also liked about Multer is that it's that if you're familiar with Express, it'd be pretty straightforward implementing it. There are a ton of tutorials on this topic. Start looking at this one. https://codeforgeek.com/2016/01/multiple-file-upload-node-js/

View solution in original post

2 REPLIES 2

Not applicable

I'd recommend Node.js along with multer or busboy to post multipart. I've implemented this with SalesForce and Multer and it worked like a charm. What I also liked about Multer is that it's that if you're familiar with Express, it'd be pretty straightforward implementing it. There are a ton of tutorials on this topic. Start looking at this one. https://codeforgeek.com/2016/01/multiple-file-upload-node-js/

Not applicable

Hi,

Have you resolve this issue?