Protect Public Restful APIs with API Gateway and oauth2.0

1

I am working on Airbnb like project. There are Public RESTful APIs that need to be secured with API Gateway and oauth 2.0 I want a solution to secure the public RESTful APIs with OAuth 2.0. Thanks

1 個回答
2
已接受的答案

Hi zeeshan.

First of all you need to decide whether you are gonna use an API Gateway of type REST or HTTP. https://docs.aws.amazon.com/apigateway/latest/developerguide/http-api-vs-rest.html.

This is because they provide different security mechanisms:

You can check the possibilities above, but in general, in terms of Oauth2 support you should look into Lambda Authorizer (max level of control), Cognito pools and JWT Authorizers.

Other security mechanisms to be taken into account are about adoption of WAF (Web Application Firewall). Even in that case, it will depend on Rest vs Http. In general, you can attach a WAF directly to an API GW of type REST, while for HTTP you can achieve only if you have CloudFront in front of the api (as edge-optimized api) or an Application Load balancer.

Finally you should consider different levels of protections and possibly Packet Inspection and/or Detection. See a reference here https://aws.amazon.com/blogs/networking-and-content-delivery/scaling-network-traffic-inspection-using-aws-gateway-load-balancer/ which leverages Gateway Load Balancers to perform IPS scanning for internet ingress traffic.

Hope it helps ;)

profile picture
專家
已回答 1 年前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南