본문 바로가기

: Back-end

공부하면서 정리가 필요한 목록

반응형

Spring

Tech

Rest API

  • In REST API, What is the best practice to make URI?
    • but case of URI, there are 3 main types of case conventions: camelCase, snake_case and spinal-case.
      all cases is universal in programming languages.
    • According to RFC3986, URLs are case sensitive (except for the scheme and the host).
      In practice though, a sensitive case may create dysfunctions with APIs hosted on a Windows system.
    • It is recommended to use the spinal-case (which is highlighted by RFC3986), this case is used by Google, PayPal and other big companies. (recommended is not REQUEIRED)
    both are helpful.
    (https://blog.restcase.com/5-basic-rest-api-design-guidelines)
    (https://www.vinaysahni.com/best-practices-for-a-pragmatic-restful-api)
  • Naver, Kakao, Google API 이용하기
반응형

': Back-end' 카테고리의 다른 글

RabbitMQ vs Apache Kafka 비교  (2) 2023.03.06
2 Phase Commit  (0) 2022.06.17
[Node.js] Stream  (0) 2021.11.22