Process images as multipart/form-data
Hello all, we are back with an interesting post. We had a requirement recently where we have to download an image from an endpoint and then post it to backend as an attachment (image/jpeg) along with the image name as multipart/form-data. The backend is hosted as an OPEN API specification. So far the requirement is clear right..then what are some of the thoughts on this? Our thought process on this: 1) Tools we have --> IIB, Datapower 2) Download an image from endpoint --> Ok where do we get this endpoint details, do we have any security setups to be done? In which format will it be downloaded? If it is image/jpeg, how can my tools handle this data? 3) Post it to backend as an attachment (image/jpeg) --> As we are core into middleware technologies, the first question that came to mind is how and in which format we can download an image and process it to backend…sin...