我正在尝试在react-node无服务器应用程序中实现OAuth2。与上面的https://serverless-stack.com和OAuth2类似。
我遵循AWS nodejs蓝图并与OAuth提供商部分混淆。
https://github.com/awslabs/aws-apigateway-lambda-authorizer-blueprints/tree/master/blueprints/nodejs
(这里我需要实现第20行'// 1.呼叫OAuth提供商')
我也尝试过以下文章/回购,但无法达到我的要求。
https://github.com/kennu/serverless-cognito-oauth2
http://www.awsomeblog.com/api-gateway-custom-authorization/
http://docs.aws.amazon.com/apigateway/latest/developerguide/use-custom-authorizer.html
How to set up an OAuth2 Authentication Provider with AWS API Gateway?
https://github.com/laardee/serverless-authentication-boilerplate
https://github.com/matthoiland/serverless-oauth2
https://github.com/mcguinness/node-lambda-oauth2-jwt-authorizer
我对OAuth2身份验证/授权的想法与https://babelouest.github.io/glewlwyd/
类似我使用Cognito进行身份验证,并尝试在lambda自定义Auth中使用OAuth2进行授权。
请告诉我使用OAuth2实现AWS API Gateway端点自定义授权的任何文章或方式。