Tag: httpapi

  • How to create HTTP/REST APIs using AWS Serverless framework?

    How to create HTTP/REST APIs using AWS Serverless framework?

    HTTP/REST APIs have become the defacto standard of communication between most web applications. You can create an API and deploy it on a server or on the cloud or go serverless . To go serverless you can use a tool like AWS lambda. And to ease the development and deployment of AWS lambda you can…

  • Rest API vs HTTP API – Are your REST APIs really REST APIs?

    Let’s say you want to create a REST API using a framework like Spring Boot. You create a class annotated with @RestController. And then you create APIs using @RequestMapping/@GetMapping/@PostMapping annotation. Are these really REST APIs? No. They are just HTTP APIs. What is the difference between the two? HTTP is one of the ways information…