I will explain my use case. I have a web app. first app is login to firebase then it return token. i want to use token which issues by firebase to access lambda function through api gateway. so need mechanism to validate firebase token in aws apigateway. could you give some suggestion.
相关问题
- How to generate 12 digit unique number in redshift
- Use awslogs with kubernetes 'natively'
- Why wrapping a function into a lambda potentially
- Generating powerset in one function, no explicit r
- Check if tie in count of lists using linq
相关文章
- Right way to deploy Rails + Puma + Postgres app to
- how many objects are returned by aws s3api list-ob
- Why doesn't C11 support lambda functions
- AWS S3 in rails - how to set the s3_signature_vers
- Passthrough input to output in AWS Step Functions
- I cannot locate production log files on Elastic Be
- ImportError: cannot import name 'joblib' f
- Static IP for Auto Scale in AWS
You have to write custom Authorizers lambda function for validate your firebase tokens.
This lambda function hit before execute your lambda function.
following diagram explain how it's work
For write custom Authorizers function follow this reference. For token validation you can use firebase sdk and its references.