How To Design Amazing REST APIs

Поделиться
HTML-код
  • Опубликовано: 26 сен 2024
  • Join us on Discord, get the source code (and support the channel 🙂): / amantinband
    Clean Architecture Zero to Hero: dometrain.com/...
    Domain-Driven Design Zero to Hero: dometrain.com/...
    All videos in this playlist: • ASP.NET 8 REST API Tut...
    In this video, we'll cover REST API design best practices!
    We'll cover everything from URI and resource naming to idempotency, safety, and caching.
    Connect with me on 'em socials:
    Twitter: / amantinband
    LinkedIn: / amantinband
    GitHub: github.com/ama...
    Check out all my courses on DomeTrain:
    dometrain.com/...
    Support the channel and get the source code:
    / amantinband
    Thanks for watching, don't forget to like & comment & subscribe! ❤️ 💻
  • НаукаНаука

Комментарии • 32

  • @ryan-heath
    @ryan-heath 4 месяца назад +5

    Very concise and high quality. Love it!

  • @DamirSecki
    @DamirSecki 4 месяца назад +6

    Great video!
    But missing important PATCH?
    Also woulde be important mentioning authorisation... with userId, where do we handle this (HEADER - usually with bearer token) and how to handle the not authorised response ... but in all, very quick, to the point video... cheers!

  • @carlcodes8422
    @carlcodes8422 4 месяца назад +1

    Love this video Amichai, very concise, and a great refresher for everyone!

  • @lucaciandrei
    @lucaciandrei 4 месяца назад +5

    Yes, finally, more.

  • @akitoueu
    @akitoueu 4 месяца назад +2

    Nice content!! Can't wait for more of this!

  • @Whojoo
    @Whojoo 4 месяца назад +11

    Quick question, why was Patch skipped? I don't think it was mentioned in the video and it is a http method I see being used by several applications by different companies.

    • @amantinband
      @amantinband  4 месяца назад +6

      I talked about it briefly but ended up cutting it due to time constraints

    • @stephenyork7318
      @stephenyork7318 4 месяца назад +1

      Whenever I’ve worked somewhere building REST APIs we always avoided patch, seems to be hard to get right when ultimately PUT is adequate.

    • @hakura88
      @hakura88 4 месяца назад

      @@stephenyork7318 we skip patch too, because we don't care that the complete resource is updated

    • @Tarabass
      @Tarabass 3 месяца назад

      ​@@stephenyork7318 in my 25 years of consuming rest api's I never used a patch endpoint. Mostly post, sometimes put..

    • @kipfitpal
      @kipfitpal 3 месяца назад

      ​@@stephenyork7318 PATCH isn't at all hard to get right. It's actually more flexible and effective than PUT.

  • @bartlomiejuminski
    @bartlomiejuminski 4 месяца назад +2

    quality video thank You

  • @tehmoros
    @tehmoros 4 месяца назад +1

    I'm having doubts about DELETE being idempotent. It's counterpart (POST) is not, as it creates new entities, so unless you're soft-deleting (so basically - updating some deletion timestamp - a common practice) an entity, DELETE will not be idempotent. It will remove the entity on the first request, responding 204 and it should do nothing on the second request (with the same ID), returning 404, as it shows the true state the server is in after the first request. Different states and responses on the first and next requests for the same parameters.
    EDIT: For anyone confused, as I was: with DELETE the idempotency is kind of "delayed". The first request changes the server state, as it should, but the subsequent requests with the same ID parameter will not change the server state (as in: will not add/remove entities). In that way DELETE is idempotent. "Soft-delete" should still be treated on the same level as UPDATE request, though.

  • @diegoborbadev
    @diegoborbadev 2 месяца назад

    Amazing video!

  • @sauliustb
    @sauliustb 4 месяца назад +1

    Nice overview, but this raises a question for me:
    If you should use plural nouns and some level of nesting, given a game, should moves for a player in a specific game then be POSTed to /games/{gameId}/players/{playerId}/moves, or should you do a POST to /moves with a json in the request body?
    Functionally both would work, but I can't figure out which is dogmatic..

  • @averrows
    @averrows 2 месяца назад

    Amazing video

  • @SerafimMakris
    @SerafimMakris 4 месяца назад +2

    if someone ask me to explain the http again i will send it this url without subject or title. :D :D
    Tnx. Amichai for the content.

  • @tchial0
    @tchial0 4 месяца назад +1

    Finally

  • @elNan140
    @elNan140 3 месяца назад

    may I ask what tool are you using for screen annotation? thanks!

  • @timur2887
    @timur2887 3 месяца назад

    Thank you very much! What app do you use to draw on screen?

    • @amantinband
      @amantinband  3 месяца назад +1

      Presentify. If you’re on windows then ZoomIt is a good alternative

    • @timur2887
      @timur2887 3 месяца назад

      @@amantinband thank you!

  • @shahrukhqasim2770
    @shahrukhqasim2770 4 месяца назад

    Is 201 created response okay if we are creating a collection of objects as the location header can only have the route for only one object created with the object's id but not the collection. Can you shed some light on it?

  • @ruekkart
    @ruekkart 4 месяца назад

    Nice video! I'm thinking about DDD and CQRS integration. Is there any standard similar to REST but for task-oriented interfaces? Something like a task-oriented API? Or is it generally recommended to use just a task-oriented UI but a REST API under the hood?

    • @amantinband
      @amantinband  4 месяца назад +1

      Not really. Perhaps gRPC is the closest. A common approach is implementing a "RESTful" API, but then converting the request internally to a command/query which is what's used to invoke the underlying task

  • @muczos
    @muczos 4 месяца назад

    Would be nice to have PATCH auth etc ... :

  • @tomazkoritnik4072
    @tomazkoritnik4072 4 месяца назад

    With REST API design I always ask myself "why oh why?". Why using it, when there are so much simpler solutions. I use JsonRPC and is so much simpler, so much easier to understand and so much more natural to use. So, why? Don't get me wrong, one can build really bad APIs with RPC, therefore the API design is VERY important. I usually try to design APIs where a RPC request always targets an object. It's like calling an action on an object from the domain model.
    I think that HTTP is abused in REST and that API design is adapted to fit to HTTP instead of adapting API design to our domain. There is simply too much mapping needed between domain code and API code in REST and requires lots of documentation to understand it. We developers have more than enough complexity elsewhere to deal with.
    Also all mentioned for REST apply also to RPC: nesting, versioning, idempotency, even HATEOAS.

  • @Eirenarch
    @Eirenarch 4 месяца назад +1

    I disagree with the /products/{productId}/reviews/{reviewId} URL. If you have reviewId it goes under /reviews/{reviewId}. Why make the user provide 2 different IDs? What happens if they mismatch? Why allow a situation where we need to answer these questions at all?

  • @frimen310
    @frimen310 3 месяца назад

    0:57 URI
    3:53 GET method
    7:10 POST method
    8:29 PUT method
    11:19 DELETE method
    12:29 Idempotency of methods
    15:13 Safety of methods
    16:30 Status codes

  • @suhutwadiyo
    @suhutwadiyo 4 месяца назад +1

    Mantappp

  • @xelaksal6690
    @xelaksal6690 3 месяца назад

    Just the best summary of the API best practices! Thanks!