REST API Headers vs Path Parameters vs Query Parameters vs Body

แชร์
ฝัง
  • เผยแพร่เมื่อ 10 พ.ย. 2024

ความคิดเห็น • 33

  • @apioncloud9092
    @apioncloud9092  3 หลายเดือนก่อน

    Text version of this video is available here: www.apioncloud.com/http-headers-path-variables-query-parameters-body.html

  • @ScottHolland0331
    @ScottHolland0331 ปีที่แล้ว +5

    I'm new to APIs and have been struggling to understand the difference between headers, body, path. Very helpful. Thank you.

    • @apioncloud9092
      @apioncloud9092  ปีที่แล้ว

      I am glad that you found this video helpful. Thank you.

  • @kopilkaiser8991
    @kopilkaiser8991 20 วันที่ผ่านมา +1

    I found this video very useful. Thank you for providing this content.

    • @apioncloud9092
      @apioncloud9092  10 วันที่ผ่านมา

      Thank you for leaving a comment and I am glad that you found this video useful.

  • @alfredabate3176
    @alfredabate3176 ปีที่แล้ว +3

    Straightforward and simple. Thank you.
    I learn so much from this. Well done. 🙏

    • @apioncloud9092
      @apioncloud9092  ปีที่แล้ว +1

      Thank you, I’m glad that you found this video useful.

  • @shubhankartiwari5101
    @shubhankartiwari5101 10 หลายเดือนก่อน +1

    Precise and straight to the point

  • @allison7324
    @allison7324 ปีที่แล้ว +1

    Thank you for breaking out this information and best practices!

    • @apioncloud9092
      @apioncloud9092  ปีที่แล้ว

      Glad that you found the video useful.

  • @mudasir4965
    @mudasir4965 ปีที่แล้ว +2

    You're doing a great job man. Thank you.

  • @niteeshmishra8281
    @niteeshmishra8281 5 หลายเดือนก่อน +1

    it was really quite precise and much informative.

    • @apioncloud9092
      @apioncloud9092  4 หลายเดือนก่อน

      Glad that you found it informative. Thank you!

  • @stardust3579
    @stardust3579 ปีที่แล้ว +1

    Great explanation with examples 👏

    • @apioncloud9092
      @apioncloud9092  ปีที่แล้ว

      Thank you and I appreciate the feedback.

  • @kattasrihari7332
    @kattasrihari7332 3 หลายเดือนก่อน +1

    Excellent information

  • @amirhoseini3563
    @amirhoseini3563 4 หลายเดือนก่อน +1

    excellent explanation ,well done

    • @apioncloud9092
      @apioncloud9092  3 หลายเดือนก่อน

      Glad you found the explanation useful. Thank you!

  • @fatimaiqra2169
    @fatimaiqra2169 หลายเดือนก่อน +1

    really useful video thanks a lot!

    • @apioncloud9092
      @apioncloud9092  หลายเดือนก่อน

      Glad that found this video useful.

  • @임성근-q1y
    @임성근-q1y ปีที่แล้ว +3

    Thanks for the intro. But I was wondering, why don’t just use a post request with the body in every case? That way it could make the code more simple no?

    • @apioncloud9092
      @apioncloud9092  ปีที่แล้ว +3

      Short answer is that you can use a POST request for every case. If you are writing a HTTP/REST API and you will be calling that API from another application of yours then you can use POST request for everything.
      However, there are norms, conventions, best practices that people like to follow because it isn’t always just you working alone. When you are working for an employer with many other programmers, there will always be atleast one programmer who will question you for not following the conventions. For example, when an API’s job is to only return data and you decide to use POST method in your API instead of GET then others may ask you to justify why you used POST since it a general understanding that GET method is for data retrieval and POST request are used to change the state of the data on the server.
      Hope this answers your question.

  • @thimiraakash9024
    @thimiraakash9024 ปีที่แล้ว +1

    Superb!!!!

  • @ka.khatib
    @ka.khatib หลายเดือนก่อน +1

    thank you this helped me

  • @OwaisAhmed-j8n
    @OwaisAhmed-j8n ปีที่แล้ว +1

    amazingggg

  • @kapilchhipa2143
    @kapilchhipa2143 ปีที่แล้ว +1

    how come GET request cant have body?

    • @apioncloud9092
      @apioncloud9092  ปีที่แล้ว

      I don't think I've said anything like that in the video, have I?
      I'll double check the video. You are correct, GET request shouldn't have a request body