How to Secure Your Microservices Architecture With JSON Web Tokens

Поділитися
Вставка
  • Опубліковано 18 жов 2024

КОМЕНТАРІ • 11

  • @AndrewMelnychuk0seen
    @AndrewMelnychuk0seen 2 роки тому +2

    This was really informative. Thank you.

  • @jmau2002
    @jmau2002 Рік тому

    Great. Answering many questions

  • @TheGaneshkumawat
    @TheGaneshkumawat Рік тому

    Gold content!!!

  • @tayyebshahbaz2673
    @tayyebshahbaz2673 10 місяців тому

    Great Vedio

  • @ofiry
    @ofiry 2 роки тому +2

    Great video! thanks

  • @abhishekmiet
    @abhishekmiet 2 роки тому +1

    informative video, thanks for sharing!!

  • @dogukan4283
    @dogukan4283 2 роки тому +2

    Thank you!

  • @jakubzaplatilek3172
    @jakubzaplatilek3172 4 місяці тому

    "we trust each other" in "zero trust" arch is kind of funny

  • @JKW3973
    @JKW3973 11 місяців тому +1

    Assuming any user with a JWT has access to all microservices can't you just validate a JWT within the API Gateway and be done. Then passing the request to the microservices without any further auth.

    • @libby6636
      @libby6636 10 місяців тому

      No really. Actually, the privilege authorization happens after the process of authentication. We can encode the access limitation specific logic in this phase, and these two processes mentioned above can be done at the API gateway layer.

    • @libby6636
      @libby6636 10 місяців тому

      In addition, the privileges required for a specific action or resource can be synchronized to the API Gateway, we can easily compare the privileges decrypted from the JWT with that from other micro services to implement our own access control logic.