Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Jwt, Session, API, API Gateway

Jwt, Session, API, API Gateway

I discussed Session, JWT, API & API Gateway.
Several types of API Gateway and accessing related public/protected services.

Kabir Hossain

March 02, 2021
Tweet

Other Decks in Programming

Transcript

  1. Session: A session is a way to store temporary information,

    used across multiple web pages. Otherway, Session is a unique string/token used to identify a client across server.
  2. JWT (JSON WEB TOKEN): A JSON Web Token is a

    safe, compact, and self-contained way of transmitting information between multiple parties in the form of a JSON object. Used for authorization mostly.
  3. What is api Api is a tool/way for transferring data

    from one application to another applications. Otherway, api is a way of talking application to application.
  4. How API works: API works like as the picture. Suppose

    we are in a restaurant and order for a pizza to waiter. The waiter transferred your request to kitchen. Then the kitchen processed your request, then delivered to you. Think User and Kitchen as a application. And they are talking using api.
  5. API Gateway Amazon API Gateway is an AWS service for

    creating, publishing, maintaining, monitoring, and securing REST, HTTP, and WebSocket APIs at any scale. Anotherway, An API gateway is an API management tool that sits between a client and a collection of backend services. An API gateway acts as a reverse proxy to accept all application programming interface (API) calls, aggregate the various services required to fulfill them, and return the appropriate result.