我正在尝试使用无服务器离线在本地开发/模拟我的 API 网关。我的 API 网关充分利用了HTTP 代理集成。生产资源如下所示:
我根据一些文档和讨论创建了一个无服务器离线配置,这些文档和讨论说可以使用 Cloud Formation 配置定义 HTTP 代理集成:
- httpProxyWithApiGateway.md - 使用无服务器框架在 API 网关上设置 HTTP 代理。
- 在 API Gateway 上设置 HTTP 代理(官方无服务器文档:API Gateway)
为了我的目的,我已经调整了上述两个配置示例,见下文。
有什么提示,我可能在这里做错了吗?
plugins:
- serverless-offline
service: company-apig
provider:
name: aws
stage: dev
runtime: python2.7
resources:
Resources:
# Parent APIG RestApi
ApiGatewayRestApi:
Type: AWS::ApiGateway::RestApi
Properties:
Name: company-apig
Description: 'The main entry point of the APIG'
# Resource /endpoint
EndpointResource:
Type: AWS::ApiGateway::Resource
Properties:
ParentId:
Fn::GetAtt:
- ApiGatewayRestApi
- RootResourceId
PathPart: 'endpoint'
RestApiId:
Ref: ApiGatewayRestApi
# Resource /endpoint/{proxy+}
EndpointProxyPath:
Type: AWS::ApiGateway::Resource
Properties:
ParentId:
Ref: EndpointResource
PathPart: '{proxy+}'
RestApiId:
Ref: ApiGatewayRestApi
# Method ANY /endpoint/{proxy+}
EndpointProxyAnyMethod:
Type: AWS::ApiGateway::Method
Properties:
AuthorizationType: NONE
HttpMethod: ANY
Integration:
IntegrationHttpMethod: ANY
Type: HTTP_PROXY
Uri: http://endpoint.company.cool/{proxy}
PassthroughBehavior: WHEN_NO_MATCH
MethodResponses:
- StatusCode: 200
ResourceId:
Ref: EndpointProxyPath
RestApiId:
Ref: ApiGatewayRestApi
对于上述配置,我得到了这个输出。显然,配置根本没有注册任何路由。
{
"statusCode":404,
"error":"Serverless-offline: route not found.",
"currentRoute":"get - /endpoint/ping",
"existingRoutes":[]
}
相关:我也在尝试使用 aws-sam 解决相同的问题,在以下帖子中 - API Gateway HTTP Proxy integration with aws-sam (NOT Lambda Proxy)