По http://docs.aws.amazon.com/apigateway/latest/developerguide/api-gateway-payload-encodings.htmlAWS API шлюза Двоичный выход без Accept заголовка
If contentHandling is not defined, and if the Content-Type header of the response and the Accept header of the original request match an entry of the binaryMediaTypes list, API Gateway passes through the body. This occurs when the Content-Type header and the Accept header are the same; otherwise, API Gateway converts the response body to the type specified in the Accept header.
Я не могу сделать оригинальный запрос на отправку заголовка Accept
. Как я могу заставить свой AWS API Gateway вернуться в двоичном формате? (Изображение/JPEG). Поскольку изображение, которое я отправляю обратно из s3, преобразуется в текст на последнем этапе (потому что в исходном запросе отсутствует заголовок Accept: image/jpeg
).
Дорогой Пакоре Вы должны принять ответ Кеннета Рори Данна -> он работает –