gateway
gateway copied to clipboard
Drop-in replacement for Go net/http when running in AWS Lambda & API Gateway
go.mod need fix " github.com/aws/aws-lambda-go v1.17.0" to "github.com/aws/aws-lambda-go v1.32.0"
i had added follow sameple code, zip and upload to aws lambda but its not work for me... Any suggestion please? [ ](url) ```package main import ( "fmt" "log" "net/http"...
I used this dependency in my go project for lambda function and api gateway. The api gateway do invoke the lambda function, however the api call returns 404 page not...
The content-type "application/vnd.api/json" is a text based JSON response type. Lets treat it as such. Refernce: https://jsonapi.org/format/
I'm looking around for a lambda adapter to use with [go-chi/chi](https://github.com/go-chi/chi)...Apex Gateway looks neat, but...unloved (trying to avoid calling this "abandoned"). * Issues left open when they could be closed...
Currently, this will result in 2 set-cookie headers. One in `Headers` and one in `Cookies`. ```go http.SetCookie(w, &http.Cookie{ Name: "foo", Value: "bar", }) ``` Without this fix, the included test...
We have been using gateway with go-gin and recently swapped from using an API Gateway to an ALB for routing, which worked fine. However, when trying to turn multi value...
#38 ensure that headers and status code get written, even if nothing was ever written. This better aligns with the golang http package's own behavior to write on close.
I switched my API to use the cheaper HttpApi type from the REST protocol type https://s.natalian.org/2021-04-19/httpApi.txt which also has JWT Authorizer type support and now I get a redirect loop....
Hello, i'm trying to migrate this Go project to lambda : https://github.com/readium/readium-lcp-server/tree/master/lcpserver I found Apex/gateway, and it seems to be the solution. But i have few questions because my case...