5

I trying to upload an image to S3 uses serverless and NodeJS but something wrong after upload. In local uses serverless-offline everything worked like champ but after deploy I got this error. Then I tried to intercept and detect what's happened and see this result:

Some strange character appeared in image body such as <0x0a> 0x01 0x04

enter image description here

I also tried to use serverless-apigw-binary but not luck.

Anton
  • 3,587
  • 2
  • 12
  • 27
Binh Ho
  • 3,690
  • 1
  • 31
  • 31

2 Answers2

7

Self Answer

Very lucky I just found the solution at binary-media-types

Add this to serverless.yml.

provider:
  # others
  apiGateway:
    binaryMediaTypes:
      - '*/*'

No need serverless-apigw-binary

No need this as well

const binaryMimeTypes = [
  'image/gif',
  'image/png',
  'image/jpeg',
  'image/jpg',
];
...

return serverless.createServer(expressApp, null, binaryMimeTypes)
Binh Ho
  • 3,690
  • 1
  • 31
  • 31
  • 1
    Should I add headers in the request? I am blocked in https://stackoverflow.com/questions/69810751/image-file-is-not-viewing-uploaded-by-s3 Could you please help me on this – KIRAN K J Nov 10 '21 at 04:43
  • You can try to debug what happened by `console.log` blob file on API side. Or download uploaded file and check file content/info and see what's happening. – Binh Ho Nov 15 '21 at 09:02
  • serverless not supporting this. – KIRAN K J Nov 15 '21 at 13:19
  • 1
    Thank you @BinhHo, serverless config for API Gateway saved me. I had set the setting in the UI but it did not take... unless there is somekind of enforcement that I am unaware of. Anyway thank you! – Gibron Nov 14 '22 at 21:32
4

Following method worked for me.

If want to upload file through lambda, one way is to open your AWS API Gateway console.

Go to

"API" -> {YourAPI} -> "Settings"

There you will find "Binary Media Types" section.

Add following media type:

multipart/form-data

Save your changes.

Then Go to "Resources" -> "proxy method"(eg. "ANY") -> "Method Request" -> "HTTP Request Headers" and add following headers "Content-Type", "Accept".

Finally deploy your api.

For more info visit: https://docs.aws.amazon.com/apigateway/latest/developerguide/api-gateway-payload-encodings-configure-with-console.html

varad_s
  • 764
  • 1
  • 12
  • 24