Skip to main content

Posts

Showing posts from May, 2021

Upload image and render image through AWS Gateway proxy+ lambda

 I searched internet for handling binary data in AWS Gateway for more than a week but I could not find any working sample code. Every where there was a bits and pieces but no one explained or provided sample working code through which I can upload an image or render an image. So I am sharing below working sample code to handle binary data in AWS Gateway Proxy+ Below is the NodeJS example to upload and render image or binary data. By default AWS Gateway does not enable processing binary data. So we have to go to settings and enable binary data as shown below Copy this code in lambda index.js file and Deploy it. const https = require('https'); const AWS = require('aws-sdk'); exports.handler = async (event) => { let response = ''; let options = { method: event.httpMethod, hostname: ' ', path: ' ' }; let apiResponse = await proxyRequest(options, event.body, event.isBase64Encoded); // Handling ret