serverless-apigwy-binary icon indicating copy to clipboard operation
serverless-apigwy-binary copied to clipboard

Serverless framework plugin to configure Binary responses in API Gateway

Results 5 serverless-apigwy-binary issues
Sort by recently updated
recently updated
newest added

Doesn't support API Gateway Websockets

**Please!** add a prominent note that this works for custom lambda integration only. It took me 6 hours to find this.

My setting is as following code. In fact, CONVERT_TO_BINARY is successfully setup in apiGateway but response's headers were missing ``` functionA: events: - http: method: get path: *** integration: lambda...

The gateway needs to be redeployed after it is updated. This may seem obvious for some, but I was stuck on this for a while. I'm not sure if you...

I tried using this plugin to convert one serverless api response to binary, as follows: ``` get_object: handler: Storage/handler.get_object events: - http: path: get_object method: get cors: true contentHandling: CONVERT_TO_BINARY...