Skip to main content
Filter by
Sorted by
Tagged with
-1 votes
0 answers
62 views

I’m using AWS API Gateway HTTP API v2 with a Lambda function running a Java Spring Boot application The integration type is Lambda proxy integration with payloadFormatVersion: 2.0. Everything works ...
nekatte's user avatar
  • 11
0 votes
1 answer
43 views

I am running into the following situation: I've configure an apiagateway endpoint (http api) with IamAuthorizer. I am using it as a datasource for appsync. I see the following happening When I do de ...
Yacine Ait Yaiz's user avatar
0 votes
1 answer
71 views

Trying to create the Api Gateway with Lambda and an Authorizer for it. When I create the api and the lambda... everyting is created correctly, but when I add the authorizer, it is not created and if I ...
Eduard Grinberg's user avatar
0 votes
0 answers
53 views

I have a Node.js server hosted on AWS Fargate, listening on port 8080. It's responsive and working as expected. The server is connected to a WebSocket API, and I’ve tested both tcp:8080 and http:8080 ...
michel jonson's user avatar
0 votes
0 answers
53 views

In our case we are having response received as a soap XML and we trying to convert that to JSON payload using the integration response mapping template. But it is not working. <?xml version = "...
Chris M's user avatar
  • 23
0 votes
1 answer
87 views

My locally hosted React application calls this AWS Serverless API Gateway built on CloudFormation Stack using Infrastructure Composer endpoint but encounters a CORS error. Although I have configured ...
Flyn Sequeira's user avatar
0 votes
0 answers
104 views

I'm trying to create an AWS Lambda accessed by API Gateway which returns gzipped json response. This is my lambda code (typescript): import { DB } from '@/DB/db'; import zlib from 'zlib'; import { ...
Pavel Bernshtam's user avatar
0 votes
0 answers
185 views

I am trying to create a chat app using Flask Websocket hosted on EC2 and expose using API Gateway. My App has both HTTP as well as SocketIO connection. My request flow is Browser -> API Gateway -&...
Amol's user avatar
  • 481
1 vote
0 answers
235 views

I am trying to enable API gateway caching but its not caching my requests. So Basically I have 2 path /servicename/test/* and /servicename/abctest/* . these need to be cached. I added these 2 paths ...
Deepali Verma's user avatar
0 votes
1 answer
540 views

My situation: I have an HTTP API working with AWS Lambda proxy Integrations in API Gateway, with GET and POST methods. I want to enable CORST for it. Doubt, do I have to add the OPTIONS method to ...
Annie's user avatar
  • 128
0 votes
1 answer
477 views

I had an API Gateway instance and all was working well until I added a custom domain with some API Mappings. I had to re-factor my routes a little, but ended up with a single /{proxy+} route which ...
ChrisBratherton's user avatar
1 vote
1 answer
291 views

While invoking an endpoint which is not configured in APIG and supplying an Authorization header (JWT token), the APIG responds with { "message": "Authorization header requires '...
Saurabh Tiwari's user avatar
-1 votes
1 answer
1k views

I have deployed my legacy application which has few HTTP Rest API's which responds in 1 minute (or greater). As of now there is no way to change this REST application performance. In front I have API ...
Coder's user avatar
  • 3,302
2 votes
2 answers
1k views

I have been using AWS_PROXY integration from API Gateway to trigger AWS Lambda functions many times and in the event I always receive 'headers' along with 'body' and many other parameters. Now I try ...
Nikolay Grishchenko's user avatar
2 votes
1 answer
3k views

I have an ApiGateway RestApi with a custom authoriser in AWS CDK v2. Now I want to create a WebSocket with an authoriser. I started by following this guide Stack 3: Api Gateway Websocket API AWS CDK ...
OrderAndChaos's user avatar
-2 votes
1 answer
103 views

I have a bucket containing many files with JSON. For compliance reasons, the bucket is open to the public. We want to try to put something in place to limit the requests to the bucket so that we don't ...
M_66's user avatar
  • 299
3 votes
1 answer
903 views

Got an API Gateway v2 that is pointing at a Lambda that is running into CORS issues when I send a POST from a website running on localhost. As part of the troubleshooting I'm mimicking a preflight ...
jcollum's user avatar
  • 47k